forked from GoogleCloudPlatform/nodejs-getting-started
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.63 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
{
"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": "jshint --exclude-path=.gitignore .",
"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",
"coveralls": "cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js"
},
"author": "Google Inc.",
"contributors": [
{
"name": "Jon Wayne Parrott",
"email": "jonwayne@google.com"
},
{
"name": "Jonathan Simon",
"email": "jbsimon@google.com"
},
{
"name": "Jason Dobry",
"email": "jdobry@google.com"
}
],
"license": "Apache Version 2.0",
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.0",
"cookie-session": "^2.0.0-alpha.1",
"express": "^4.13.4",
"express-winston": "^1.2.0",
"gcloud": "^0.28.0",
"googleapis": "^2.1.7",
"jade": "^1.11.0",
"kerberos": "^0.0.18",
"lodash": "^4.5.1",
"mongodb": "^2.1.7",
"multer": "^1.1.0",
"mysql": "^2.10.2",
"prompt": "^1.0.0",
"request": "^2.69.0",
"winston": "^2.1.1"
},
"devDependencies": {
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"mocha": "^2.4.5",
"proxyquire": "^1.7.4",
"request": "^2.69.0",
"sinon": "^1.17.3",
"supertest": "^1.2.0"
},
"engines": {
"node": ">=0.12.7"
}
}