-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "greenpithumb-frontend-static",
"homepage": "https://github.com/JeetShetty/GreenPiThumb",
"repository": {
"type": "git",
"url": "https://github.com/JeetShetty/GreenPiThumb_Frontend_static"
},
"license": "Apache-2.0",
"dependencies": {
"bower": "^1.6.5"
},
"devDependencies": {
"coveralls": "^2.11.6",
"cssbeautify-cli": "^0.5.3",
"html-validator-cli": "^2.0.0",
"http-server": "^0.9.0",
"jasmine-core": "^2.3.4",
"jscs": "^3.0.7",
"jshint": "^2.8.0",
"karma": "~1.4.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "~1.1.0",
"karma-phantomjs2-launcher": "^0.5.0",
"phantomjs-prebuilt ": "^2.1.14"
},
"scripts": {
"postinstall": "bower install",
"update-deps": "npm update",
"postupdate-deps": "bower update",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1 ./app",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run",
"lint": "jshint app && jscs app",
"travis": "npm run lint && npm run test-single-run"
}
}