forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.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
{
"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,
"scripts": {
"lint": "eslint '**/*.js'",
"pretest": "npm run lint",
"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"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.0.0",
"@google-cloud/storage": "2.3.4",
"ava": "0.25.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"nyc": "13.1.0",
"prettier": "^1.15.2"
}
}