Files
xen-orchestra/package.json
2015-08-26 14:32:47 +02:00

56 lines
1.4 KiB
JSON

{
"private": true,
"name": "xo-test",
"version": "0.0.0",
"license": "ISC",
"description": "Test client for Xo-Server",
"keywords": [],
"homepage": "https://github.com/vatesfr/xo-test",
"bugs": "https://github.com/vatesfr/xo-test/issues",
"repository": {
"type": "git",
"url": "https://github.com/vatesfr/xo-test.git"
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@isonoe.net"
},
"preferGlobal": false,
"main": "dist/",
"bin": {},
"files": [
"dist/"
],
"dependencies": {
"babel-runtime": "^5.5.6",
"xo-lib": "^0.7.2"
},
"devDependencies": {
"babel": "^5.5.6",
"babel-eslint": "^4.1.0",
"babel-plugin-closure-elimination": "0.0.1",
"clarify": "^1.0.5",
"event-to-promise": "^0.3.3",
"lodash": "^3.9.3",
"mocha": "^2.2.5",
"must": "^0.12.0",
"source-map-support": "^0.3.1",
"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"
}
}