forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.8 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
{
"name": "google-cloud-node",
"private": "true",
"devDependencies": {
"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",
"is": "^3.1.0",
"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",
"multiline": "^1.0.2",
"package-json": "^2.4.0",
"propprop": "^0.3.1",
"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",
"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 packages/*/test/*.js",
"snippet-test": "mocha --timeout 5000 --bail test/docs.js",
"system-test": "mocha packages/*/system-test/*.js --no-timeouts --bail",
"cover": "istanbul cover _mocha --report lcovonly -x 'packages/*/src/v*/*.js' -- --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"
}
}