This repository was archived by the owner on Mar 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.02 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "checklistomania",
"version": "1.0.0",
"description": "You know, for managing checklists.",
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/18F/checklistomania.git"
},
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.14.1",
"bower": "^1.7.2",
"ejs": "^2.4.1",
"express": "^4.13.4",
"express-session": "^1.11.3",
"github": "^0.2.4",
"lodash.defaults": "^4.2.0",
"lodash.get": "^4.4.2",
"method-override": "^2.3.5",
"mongodb": "^2.1.2",
"passport": "^0.3.2",
"passport-github2": "^0.1.9",
"router": "^1.1.3"
},
"devDependencies": {
"coveralls": "^2.11.6",
"eslint": "^3.1.0",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-plugin-import": "^1.10.3",
"istanbul": "^0.4.1",
"jasmine-core": "^2.4.1",
"jasmine-node": "^1.14.5",
"karma": "1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-junit-reporter": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"mockery": "^1.7.0",
"nodemon": "^1.9.2",
"phantomjs-prebuilt": "^2.1.14",
"sinon": "^1.17.4",
"supertest": "^1.2.0"
},
"scripts": {
"postinstall": "bower install",
"backEndTests": "node_modules/jasmine-node/bin/jasmine-node --captureExceptions spec/backend",
"frontEndTests": "node node_modules/.bin/karma start karma.conf.js --no-auto-watch --single-run",
"test": "npm run backEndTests && npm run frontEndTests",
"start": "node app.js",
"dev-start": "nodemon app.js",
"eslint": "eslint . || true",
"coverage": "istanbul cover node_modules/jasmine-node/bin/jasmine-node spec/backend",
"coveralls": "cat ./coverage/lcov.info ./coverage/phantomjs/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"engines": {
"node": "^6.9.1",
"npm": "^3.10.8"
},
"author": "Anthony Garvan",
"contributors": [
"James Seppi <james.seppi@gsa.gov>"
],
"license": "CC0-1.0"
}