forked from googleapis/nodejs-iot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
57
58
59
60
{
"name": "@google-cloud/iot",
"description": "Cloud IoT API client for Node.js",
"version": "0.1.1",
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": ">=6.0.0"
},
"repository": "googleapis/nodejs-iot",
"main": "src/index.js",
"files": [
"protos",
"src",
"AUTHORS",
"COPYING"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google iot",
"iot",
"Cloud IoT API"
],
"scripts": {
"test": "npm run cover",
"cover": "nyc --reporter=lcov mocha test/*.js && nyc report",
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
"test-no-cover": "mocha test/*.js --timeout 600000",
"lint": "eslint '**/*.js'",
"docs": "jsdoc -c .jsdoc.js",
"system-test": "mocha system-test/*.js --timeout 600000",
"fix": "eslint --fix '**/*.js'"
},
"dependencies": {
"google-gax": "^0.22.0",
"lodash.merge": "^4.6.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^3.0.0",
"codecov": "^3.0.2",
"eslint": "^5.0.1",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"ink-docstrap": "^1.3.2",
"intelli-espower-loader": "^1.0.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nyc": "^13.0.0",
"power-assert": "^1.6.0",
"prettier": "^1.13.7"
}
}