-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.22 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.22 KB
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
{
"name": "prison-data",
"description": "Data visualization from prisonstudies.org",
"private": true,
"version": "0.0.1",
"repository": "https://github.com/stuartsan/prison-studies",
"devDependencies": {
"karma": "~0.10",
"protractor": "~0.17.0",
"http-server": "^0.6.1",
"bower": "^1.3.1",
"shelljs": "^0.2.6",
"grunt": "^0.4.4",
"grunt-sass": "^0.12.1",
"browserify": "^3.38.0",
"grunt-browserify": "^2.0.1",
"grunt-contrib-concat": "^0.4.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-copy": "^0.5.0"
},
"scripts": {
"postinstall": "bower install",
"start": "http-server -p 8000",
"test": "karma start test/karma.conf.js",
"update-webdriver": "webdriver-manager update",
"protractor": "protractor test/protractor-conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}