-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 872 Bytes
/
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
{
"name": "kubernetes-stream",
"version": "2.0.0",
"description": "Streaming Kubernetes events",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha",
"lint": "eslint src"
},
"keywords": [
"kubernetes",
"stream"
],
"author": "Josh Leder <josh@ha.cr>",
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"dependencies": {
"axios": "^0.17.1",
"chai": "^4.1.1",
"debug": "^2.6.8",
"lodash": "^4.17.4",
"mocha": "^3.5.0",
"js-yaml": "latest"
},
"devDependencies": {
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"glob": "latest",
"istanbul": "^0.4.5",
"sinon": "^3.2.0",
"sinon-helpers": "^1.7.4"
}
}