83 lines
1.6 KiB
JSON
83 lines
1.6 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/"
|
|
],
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"dependencies": {
|
|
"babel-eslint": "^7.1.1",
|
|
"babel-plugin-lodash": "^3.2.11",
|
|
"babel-plugin-transform-runtime": "^6.15.0",
|
|
"babel-preset-env": "^1.1.4",
|
|
"babel-preset-stage-3": "^6.17.0",
|
|
"babel-runtime": "^6.20.0",
|
|
"cross-env": "^3.1.3",
|
|
"dependency-check": "^2.7.0",
|
|
"golike-defer": "^0.0.0",
|
|
"husky": "^0.13.2",
|
|
"jest": "^19.0.0",
|
|
"must": "^0.13.2",
|
|
"rimraf": "^2.5.4",
|
|
"standard": "^9.0.0",
|
|
"xo-collection": "^0.4.1",
|
|
"xo-lib": "^0.8.2"
|
|
},
|
|
"scripts": {
|
|
"commit-msg": "npm test",
|
|
"dev-test": "jest --bail --watch",
|
|
"posttest": "standard && dependency-check ./package.json",
|
|
"test": "jest"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"lodash",
|
|
"transform-runtime"
|
|
],
|
|
"presets": [
|
|
[
|
|
"env",
|
|
{
|
|
"targets": {
|
|
"node": 4
|
|
}
|
|
}
|
|
],
|
|
"stage-3"
|
|
]
|
|
},
|
|
"jest": {
|
|
"roots": [
|
|
"<rootDir>/src"
|
|
]
|
|
},
|
|
"standard": {
|
|
"globals": [
|
|
"jasmine"
|
|
],
|
|
"ignore": [
|
|
"dist"
|
|
],
|
|
"parser": "babel-eslint"
|
|
}
|
|
}
|