-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 877 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 877 Bytes
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
{
"name": "vmpower-agent",
"version": "0.0.2",
"description": "VMPower CLI",
"main": "index.js",
"scripts": {
"test": "babel src/ -d build/ && jest build/test",
"build": "babel src/ -d build/",
"flow": "flow",
"lint": "./node_modules/.bin/eslint src",
"ci_validate": "npm run lint && npm run flow && npm run test"
},
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^5.1.0",
"moment": "^2.29.4",
"nconf": "^0.11.4",
"needle": "^2.4.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.0.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-jest": "^23.11.0",
"flow-bin": "^0.124.0",
"jest": "^26.0.1"
}
}