-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.7 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "devlog",
"version": "1.0.0",
"description": "A log book for developers",
"repository": {
"type": "git",
"url": "https://github.com/Dineshs91/devlog.git"
},
"license": "",
"main": "app/index.html",
"author": "Dinesh S",
"window": {
"toolbar": false,
"width": 1200,
"height": 700,
"frame": false,
"show": true
},
"dependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^1.1.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-exec": "^0.4.6",
"grunt-github-releaser": "^0.1.17",
"grunt-nw-builder": "^2.0.0",
"nedb": "~1.8.0",
"nw": "0.13.4-sdk"
},
"devDependencies": {
"bower": "^1.6.7",
"jshint": "^2.9.1",
"karma": "^0.13.17",
"karma-coverage": "~0.5.3",
"karma-jasmine": "~0.3.6",
"karma-junit-reporter": "~0.4.0",
"karma-nodewebkit-launcher": "~0.0.12",
"less": "^2.6.1",
"lodash": "^2.4.1",
"protractor": "^1.8.0",
"tar.gz": "^0.1.1",
"underscore": "^1.8.3",
"unzip": "^0.1.9"
},
"scripts": {
"gencss": "lessc app/css/index.less app/css/index.css",
"setup": "grunt setup",
"postinstall": "bower install",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"pree2e": "npm run update-webdriver && npm run setup",
"e2e": "protractor test/protractor-conf.js",
"unittest": "node node_modules/karma/bin/karma start test/karma.conf.js",
"unittest-single-run": "node_modules/karma/bin/karma start test/karma.conf.js --single-run",
"pretest": "grunt jshint",
"test": "npm run unittest-single-run && npm run e2e",
"start": "node_modules/nw/bin/nw --remote-debugging-port=9222"
}
}