Files
xen-orchestra/packages/xen-api/package.json
Julien Fontanet 720b9ef999 0.6.9
2015-12-03 12:40:31 +01:00

84 lines
2.0 KiB
JSON

{
"name": "xen-api",
"version": "0.6.9",
"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.8.34",
"blocked": "^1.1.0",
"bluebird": "^2.9.21",
"debug": "^2.1.3",
"event-to-promise": "^0.4.0",
"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.8.34",
"babel-eslint": "^4.1.5",
"clarify": "^1.0.5",
"dependency-check": "^2.5.1",
"mocha": "^2.2.5",
"must": "^0.13.1",
"nyc": "^3.2.2",
"source-map-support": "^0.3.3",
"standard": "^5.1.0",
"trace": "^2.0.1"
},
"scripts": {
"build": "babel --source-maps --out-dir=dist/ src/",
"dev": "babel --watch --source-maps --out-dir=dist/ src/",
"lint": "standard",
"depcheck": "dependency-check ./package.json",
"posttest": "npm run lint && npm run depcheck",
"prepublish": "npm run build",
"test": "nyc 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"
}
}