This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.94 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
{
"name": "google-cloud-node",
"private": "true",
"devDependencies": {
"array-includes": "^3.0.3",
"array-uniq": "^1.0.3",
"async": "^2.0.1",
"chalk": "^1.1.3",
"coveralls": "^2.11.2",
"create-error-class": "^3.0.2",
"david": "^9.0.0",
"dox": "0.8.1",
"extend": "^3.0.0",
"glob": "^5.0.9",
"globby": "^3.0.1",
"intelli-espower-loader": "^1.0.1",
"is": "^3.1.0",
"jscs": "^2.1.1",
"jshint": "^2.9.1",
"lodash.camelcase": "^4.3.0",
"lodash.flatten": "^4.3.0",
"lodash.template": "^4.3.0",
"lodash.upperfirst": "^4.3.1",
"mitm": "^1.1.0",
"mocha": "^2.5.3",
"multiline": "^1.0.2",
"nyc": "^10.3.0",
"package-json": "^2.4.0",
"power-assert": "^1.4.2",
"propprop": "^0.3.1",
"semver": "^5.3.0",
"shelljs": "^0.7.3",
"string-format-obj": "^1.0.0",
"string-includes": "^2.0.0",
"through2": "^2.0.0"
},
"scripts": {
"postinstall": "node ./scripts/install.js",
"link-common": "node ./scripts/link-common.js",
"update-deps": "node ./scripts/update-deps.js",
"docs": "node ./scripts/docs",
"prepare-ghpages": "node ./scripts/docs/prepare.js",
"remove-ghpages": "node ./scripts/docs/remove.js",
"lint": "jshint scripts/ packages/ system-test/ test/ && jscs packages/ system-test/ test/",
"test": "npm run unit-test && npm run docs && npm run snippet-test",
"unit-test": "mocha --timeout 5000 --bail --require intelli-espower-loader packages/*/test/*.js",
"snippet-test": "mocha --timeout 5000 --bail test/docs.js",
"system-test": "mocha packages/*/system-test/*.js --require intelli-espower-loader --no-timeouts --bail",
"cover": "nyc --reporter=lcov --reporter=html mocha --require intelli-espower-loader --no-timeouts packages/*/test/*.js && nyc report",
"coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls"
},
"license": "Apache-2.0",
"engines": {
"node": ">=4.0.0"
}
}