-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.82 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
59
60
61
62
63
64
{
"name": "vsphere-connect",
"version": "2.0.0-alpha.0",
"description": "A modern vSphere client",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bhoriuchi/vsphere-connect.git"
},
"options": {
"mocha": "--check-leaks --full-trace src/**/__tests__/**/*-test.js"
},
"scripts": {
"lint": "eslint src",
"prettier": "prettier --write 'src/**/*.js'",
"build:src": "babel src --optional runtime --ignore __tests__ --out-dir dist/ && cp package.json dist/",
"build": "npm run lint && npm run build:src && npm run test",
"test": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha"
},
"author": "Branden Horiuchi <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/bhoriuchi/vsphere-connect",
"bugs": {
"url": "https://github.com/bhoriuchi/vsphere-connect/issues"
},
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^2.6.9",
"lodash": "^4.17.4",
"node-localstorage": "^1.3.0",
"request": "^2.83.0",
"rxjs": "^5.5.2",
"semver": "^5.4.1",
"xmlbuilder": "^8.2.2",
"xmldom": "^0.1.27"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-syntax-async-generators": "6.13.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"chalk": "^2.0.1",
"eslint": "^4.8.0",
"eslint-plugin-babel": "^4.1.2",
"mocha": "^3.2.0",
"uglify-js": "^3.1.3",
"prettier": "^1.11.1"
},
"keywords": [
"vsphere",
"client",
"vmware",
"vcenter",
"esx",
"esxi",
"api",
"vim"
]
}