79 lines
1.8 KiB
JSON
79 lines
1.8 KiB
JSON
{
|
|
"name": "xen-api",
|
|
"version": "0.6.7",
|
|
"license": "ISC",
|
|
"description": "Connector to the Xen API",
|
|
"keywords": [
|
|
"xen",
|
|
"api",
|
|
"xen-api",
|
|
"xenapi",
|
|
"xapi"
|
|
],
|
|
"homepage": "https://github.com/julien-f/js-xen-api",
|
|
"bugs": "https://github.com/julien-f/js-xen-api/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/julien-f/js-xen-api.git"
|
|
},
|
|
"author": {
|
|
"name": "Julien Fontanet",
|
|
"email": "julien.fontanet@vates.fr"
|
|
},
|
|
"preferGlobal": false,
|
|
"main": "dist/",
|
|
"bin": {
|
|
"xen-api": "dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
".mocha.js"
|
|
],
|
|
"dependencies": {
|
|
"babel-runtime": "^5",
|
|
"blocked": "^1.1.0",
|
|
"bluebird": "^2.9.21",
|
|
"debug": "^2.1.3",
|
|
"event-to-promise": "^0.3.2",
|
|
"exec-promise": "^0.5.1",
|
|
"kindof": "^2.0.0",
|
|
"lodash.filter": "^3.1.1",
|
|
"lodash.find": "^3.2.1",
|
|
"lodash.foreach": "^3.0.2",
|
|
"lodash.isarray": "^3.0.2",
|
|
"lodash.isobject": "^3.0.1",
|
|
"lodash.map": "^3.1.2",
|
|
"lodash.startswith": "^3.0.1",
|
|
"make-error": "^1.0.2",
|
|
"minimist": "^1.1.1",
|
|
"ms": "^0.7.1",
|
|
"pw": "0.0.4",
|
|
"source-map-support": "^0.3.1",
|
|
"xmlrpc": "^1.3.0",
|
|
"xo-collection": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel": "^5.5.8",
|
|
"babel-eslint": "^4.1.0",
|
|
"clarify": "^1.0.5",
|
|
"mocha": "^2.2.5",
|
|
"must": "^0.12.0",
|
|
"standard": "^5.1.0",
|
|
"trace": "^1.2.0"
|
|
},
|
|
"scripts": {
|
|
"build": "babel --source-maps --out-dir=dist/ src/",
|
|
"dev": "babel --watch --source-maps --out-dir=dist/ src/",
|
|
"lint": "standard",
|
|
"prepublish": "npm run build",
|
|
"test": "mocha --opts .mocha.opts \"dist/**/*.spec.js\"",
|
|
"test-dev": "mocha --opts .mocha.opts --watch --reporter=min \"dist/**/*.spec.js\""
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"dist/**"
|
|
],
|
|
"parser": "babel-eslint"
|
|
}
|
|
}
|