-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 871 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
{
"name": "kubeasy",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "nodemon bin/index.js",
"lint": "prettier **/*.js --list-different",
"start": "node bin/index.js",
"test": "mocha src/**/*.test.js",
"test:watch": "mocha --watch src/**/*.test.js"
},
"bin": {
"kubeasy": "bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcenacp/kubeasy.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcenacp/kubeasy/issues"
},
"homepage": "https://github.com/marcenacp/kubeasy#readme",
"dependencies": {
"blessed": "^0.1.81",
"blessed-xterm": "^1.1.20",
"lodash": "^4.17.11",
"xterm": "^3.8.1"
},
"devDependencies": {
"mocha": "^6.1.4",
"nodemon": "^1.19.0",
"prettier": "^1.17.1"
}
}