forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "nodejs-docs-samples",
"description": "Node.js samples found on https://cloud.google.com",
"version": "0.0.1",
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"main": "src/index.js",
"private": true,
"semistandard": {
"globals": [
"rm",
"exec",
"cd",
"ls"
],
"ignore": [
"appengine/loopback",
"appengine/parse-server/cloud/main.js",
"**/node_modules/**",
"coverage"
]
},
"scripts": {
"check": "yarn check --strict-semver --integrity",
"lint": "repo-tools lint",
"generate": "node ./scripts/generate",
"pretest": "npm run lint && node ./scripts/clean coverage",
"unit-cover": "nyc --cache npm test && nyc report --reporter=html",
"system-cover": "nyc --cache npm run system-test && nyc report --reporter=html",
"test": "npm run unit-test && npm run system-test",
"cover": "nyc --cache npm run test && nyc report --reporter=html",
"update-dependencies": "./scripts/update-dependencies.sh"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.0",
"@google-cloud/storage": "1.6.0",
"ava": "0.25.0",
"nyc": "11.6.0",
"semistandard": "^12.0.1",
"shelljs": "0.8.1"
}
}