Files
xen-orchestra/package.json
2019-06-06 09:47:04 +02:00

83 lines
1.9 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": ">=6"
},
"dependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/preset-env": "^7.1.6",
"@iarna/toml": "^2.2.1",
"app-conf": "^0.7.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-plugin-lodash": "^3.2.11",
"cross-env": "^5.2.0",
"golike-defer": "^0.4.1",
"husky": "^2.4.0",
"jest": "^24.8.0",
"lodash": "^4.17.11",
"must": "^0.13.2",
"rimraf": "^2.5.4",
"xo-collection": "^0.4.1",
"xo-common": "^0.2.0",
"xo-lib": "^0.9.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2"
},
"scripts": {
"dev-test": "jest --bail --watch",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/src/old-tests"
],
"testEnvironment": "node",
"testRegex": "\\.spec\\.js$"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add",
"eslint"
]
}
}