-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.62 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.62 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "OverView",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node --harmony ./bin/www",
"debug": "DEBUG=OverView:* npm start",
"test": "semistandard | snazzy && mocha --check-leaks --recursive",
"cover": "istanbul cover _mocha -- --recursive",
"coveralls": "istanbul cover _mocha --report lcovonly -- --recursive && cat ./coverage/lcov.info | coveralls",
"build": "npm run build:index & npm run build:app",
"build:index": "browserify src/index.js -o public/js/index.js -t [ babelify --presets [ es2015 ] ]",
"build:app": "browserify src/app.js -o public/js/app.js -t [ babelify --presets [ es2015 ] ]",
"watch": "watchify src/app.js --debug -v -o public/js/app.js -t [ babelify --presets [ es2015 ] ]",
"lint": "semistandard | snazzy"
},
"dependencies": {
"ajv": "^4.1.7",
"body-parser": "~1.13.2",
"connect-sqlite3": "^0.9.8",
"d3": "^4.1.1",
"debug": "~2.2.0",
"dotenv": "^2.0.0",
"ejs": "~2.3.3",
"express": "~4.13.1",
"express-session": "^1.13.0",
"morgan": "~1.6.1",
"request": "^2.72.0",
"sanitize-html": "^1.13.0",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-http": "^3.0.0",
"coveralls": "^2.11.9",
"dirty-chai": "^1.2.2",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"proxyquire": "^1.7.10",
"rewire": "^2.5.2",
"semistandard": "^8.0.0",
"snazzy": "^4.0.0",
"watchify": "^3.7.0"
}
}