forked from GoogleCloudPlatform/LabelCat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.05 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
60
{
"name": "labelcat",
"version": "1.0.0-alpha.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"contributors": [
{
"name": "Jason Dobry",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/LabelCat.git"
},
"engines": {
"node": ">= 4.x"
},
"scripts": {
"start": "node --harmony ${SCRIPT:-app.js}",
"monitor": "nodemon --harmony ${SCRIPT:-app.js}",
"unit": "node --harmony node_modules/mocha/bin/mocha test/unit/app/index.test.js --reporter dot",
"unit-cover": "node --harmony node_modules/istanbul-harmony/lib/cli.js cover --hook-run-in-context node_modules/mocha/bin/_mocha -- test/unit/app/index.test.js --reporter dot",
"integration": "node --harmony node_modules/mocha/bin/mocha test/integration/app/index.test.js --reporter dot",
"integration-cover": "node --harmony node_modules/istanbul-harmony/lib/cli.js cover --hook-run-in-context node_modules/mocha/bin/_mocha -- test/integration/app/index.test.js --reporter dot",
"test": "npm run unit && npm run integration",
"cover": "npm run unit-cover && npm run integration-cover",
"coveralls": "npm run cover && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"deploy": "gcloud preview app deploy app.yaml worker.yaml --version alpha-001 --promote"
},
"dependencies": {
"@google/cloud-trace": "0.2.0",
"bluebird": "2.10.2",
"body-parser": "1.14.1",
"cookie-session": "1.2.0",
"csurf": "1.8.3",
"dependable": "0.2.5",
"express": "4.13.3",
"express-winston": "0.4.1",
"gcloud": "0.23.0",
"github": "0.2.4",
"googleapis": "2.1.5",
"node-uuid": "1.4.3",
"passport": "0.3.0",
"passport-github": "1.0.0",
"request": "2.64.0",
"winston": "1.1.0"
},
"devDependencies": {
"chai": "3.3.0",
"coveralls": "^2.11.4",
"faker": "3.0.1",
"istanbul-harmony": "0.3.16",
"keygrip": "1.0.1",
"mocha": "2.3.3",
"sinon": "1.17.1",
"supertest": "1.1.0"
}
}