forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.29 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
{
"name": "gcloud-node",
"private": "true",
"devDependencies": {
"async": "^1.4.2",
"coveralls": "^2.11.2",
"dox": "0.8.1",
"extend": "^3.0.0",
"glob": "^5.0.9",
"globby": "^3.0.1",
"istanbul": "^0.3.5",
"jscs": "^2.1.1",
"jshint": "^2.9.1",
"lodash.flatten": "^4.3.0",
"lodash.template": "^4.3.0",
"mitm": "^1.1.0",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"propprop": "^0.3.0",
"proxyquire": "^1.7.10",
"request": "^2.70.0",
"semver": "^5.3.0",
"shelljs": "^0.7.3",
"string-format-obj": "^1.0.0",
"through2": "^2.0.0"
},
"scripts": {
"postinstall": "node ./scripts/install.js",
"docs": "node ./scripts/docs/packages.js",
"bundle": "node ./scripts/docs/bundle.js",
"lint": "jshint scripts/ packages/ system-test/ test/ && jscs packages/ system-test/ test/",
"test": "npm run docs && mocha test/docs.js packages/*/test/*.js",
"system-test": "mocha packages/*/system-test/*.js --no-timeouts --bail",
"cover": "istanbul cover _mocha --report lcovonly -- --no-timeouts --bail packages/*/test/*.js -R spec",
"coveralls": "npm run cover && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.12.0"
}
}