forked from GoogleCloudPlatform/nodejs-getting-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "nodejs-getting-started",
"version": "1.0.0",
"description": "End to end sample for running Node.JS applications on Google Cloud Platform",
"repository": "https://github.com/GoogleCloudPlatform/nodejs-getting-started",
"private": true,
"scripts": {
"lint": "semistandard \"**/*.js\"",
"mocha": "mocha test/index.js -t 30000",
"cover": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- test/index.js -t 30000",
"test": "npm run lint && npm run cover",
"e2e": "mocha test/e2e.js -t 1800000",
"codecov": "cat ./coverage/lcov.info | codecov"
},
"author": "Google Inc.",
"contributors": [
{
"name": "Jon Wayne Parrott",
"email": "[email protected]"
},
{
"name": "Jonathan Simon",
"email": "[email protected]"
},
{
"name": "Jason Dobry",
"email": "[email protected]"
}
],
"license": "Apache Version 2.0",
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.0",
"cookie-session": "^2.0.0-alpha.1",
"express": "^4.13.4",
"express-winston": "^1.3.1",
"gcloud": "~0.31.0",
"jade": "^1.11.0",
"kerberos": "^0.0.19",
"lodash": "^4.11.1",
"mongodb": "^2.1.15",
"multer": "^1.1.0",
"mysql": "^2.10.2",
"nconf": "^0.8.4",
"prompt": "^1.0.0",
"request": "^2.72.0",
"winston": "^2.2.0"
},
"devDependencies": {
"codecov": "^1.0.1",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"nodejs-repo-tools": "git+https://github.com/GoogleCloudPlatform/nodejs-repo-tools.git#21daa823090c43fb667157c8b5b0c3b7f45a8357",
"proxyquire": "^1.7.4",
"request": "^2.69.0",
"semistandard": "^7.0.5",
"sinon": "^1.17.3",
"supertest": "^1.2.0"
},
"engines": {
"node": ">=0.12.7"
}
}