forked from godaddy/kubernetes-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "kubernetes-client",
"version": "5.3.1",
"description": "Simplified Kubernetes API client.",
"main": "lib/index.js",
"types": "./typings/index.d.ts",
"scripts": {
"check-coverage": "istanbul check-coverage",
"coverage": "istanbul cover ./node_modules/.bin/_mocha && istanbul report cobertura",
"docs": "node scripts/docs.js --builtins",
"jsdoc": "jsdoc -d doc lib",
"lint": "eslint-godaddy examples/ lib/ scripts/ test/",
"release": "standard-version --tag-prefix=''",
"test": "npm run lint && mocha && npm run test-typings",
"test-typings": "tsc --project ./typings",
"test-integration": "TESTING=int mocha -t ${TIMEOUT:-30000} test"
},
"repository": "godaddy/kubernetes-client",
"keywords": [
"kubernetes",
"kubectl",
"containers"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"files": [
"lib",
"typings"
],
"dependencies": {
"async": "^2.6.0",
"js-yaml": "^3.10.0",
"lodash.merge": "^4.6.0",
"openid-client": "^2.0.0",
"promy": "^1.0.1",
"request": "^2.83.0"
},
"devDependencies": {
"@types/node": "^10.3.5",
"assume": "^2.0.1",
"eslint": "^5.0.0",
"eslint-config-godaddy": "^2.1.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^5.0.0",
"istanbul": "^0.4.3",
"jsdoc": "^3.5.5",
"mocha": "^5.0.0",
"nock": "^9.1.5",
"sinon": "6.0.1",
"standard-version": "^4.3.0",
"swagger-js-codegen": "^1.12.0",
"typescript": "^2.6.1",
"yargs": "^11.0.0"
}
}