-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "kube-watch",
"version": "0.5.4",
"description": "Watch Kubernetes resources",
"main": "./dist/index.js",
"scripts": {
"prebuild": "rimraf dist && npm install",
"build": "mkdir -p dist && babel src -o dist/index.js",
"test": "test/run.sh",
"test:watch": "mocha -w --compilers js:babel-register test/test.js",
"test:single": "mocha --compilers js:babel-register test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/subk/kube-watch.git"
},
"keywords": [
"kubernetes",
"k8s",
"kube",
"watch",
"api"
],
"author": "max",
"license": "MIT",
"bugs": {
"url": "https://github.com/subk/kube-watch/issues"
},
"files": [
"dist",
"package.json",
"README.md"
],
"homepage": "https://github.com/subk/kube-watch#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"rimraf": "^2.5.4"
},
"dependencies": {
"json-stream": "^1.0.0",
"lodash.findkey": "^4.6.0",
"lodash.flatmap": "^4.5.0",
"lodash.pick": "^4.4.0",
"request": "^2.74.0"
}
}