Files
xen-orchestra/package.json

68 lines
2.0 KiB
JSON
Raw Normal View History

2017-01-10 12:21:59 +01:00
{
2017-01-10 15:54:29 +01:00
"devDependencies": {
2018-04-05 11:00:03 +02:00
"@babel/register": "^7.0.0-beta.44",
"babel-7-jest": "^21.3.2",
2017-12-27 10:01:56 +01:00
"babel-eslint": "^8.1.2",
2018-02-09 15:01:00 +01:00
"benchmark": "^2.1.4",
2017-12-27 10:01:56 +01:00
"eslint": "^4.14.0",
2017-12-18 13:14:39 +01:00
"eslint-config-standard": "^11.0.0-beta.0",
2018-03-08 00:13:54 +01:00
"eslint-config-standard-jsx": "^5.0.0",
2017-11-17 17:42:48 +01:00
"eslint-plugin-import": "^2.8.0",
2018-02-07 14:03:34 +01:00
"eslint-plugin-node": "^6.0.0",
2017-11-17 17:42:48 +01:00
"eslint-plugin-promise": "^3.6.0",
2018-02-07 10:39:32 +01:00
"eslint-plugin-react": "^7.6.1",
2017-11-17 17:42:48 +01:00
"eslint-plugin-standard": "^3.0.1",
"exec-promise": "^0.7.0",
2018-04-05 11:00:03 +02:00
"flow-bin": "^0.69.0",
2018-02-13 12:05:52 +01:00
"globby": "^8.0.0",
"husky": "^0.14.3",
2017-12-27 10:01:56 +01:00
"jest": "^22.0.4",
"lodash": "^4.17.4",
2018-02-08 17:45:16 +01:00
"prettier": "^1.10.2",
2017-12-05 11:46:02 +01:00
"promise-toolbox": "^0.9.5",
"sorted-object": "^2.0.1"
},
"engines": {
"yarn": "^1.2.1"
},
2017-11-08 12:05:03 +01:00
"jest": {
"collectCoverage": true,
2018-02-13 12:05:52 +01:00
"projects": [
"<rootDir>",
"<rootDir>/packages/xo-web"
],
2017-11-08 12:05:03 +01:00
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/dist/",
2018-02-07 14:43:14 +01:00
"/xo-vmdk-to-vhd/",
"/xo-web/"
2017-11-08 12:05:03 +01:00
],
"testRegex": "\\.spec\\.js$",
"transform": {
2018-02-01 11:28:16 +01:00
"/@xen-orchestra/cron/.+\\.jsx?$": "babel-7-jest",
"/packages/complex-matcher/.+\\.jsx?$": "babel-7-jest",
"/packages/value-matcher/.+\\.jsx?$": "babel-7-jest",
"/packages/xo-cli/.+\\.jsx?$": "babel-7-jest",
2018-03-08 11:00:00 +01:00
"/packages/xo-server/.+\\.jsx?$": "babel-7-jest",
"\\.jsx?$": "babel-jest"
}
2017-11-08 12:05:03 +01:00
},
"private": true,
"scripts": {
2017-12-27 10:01:56 +01:00
"build": "scripts/run-script --parallel build",
"clean": "scripts/run-script --parallel clean",
2018-02-15 15:20:06 +01:00
"dev": "scripts/run-script --parallel dev",
"dev-test": "jest --bail --watch \"^(?!.*\\.integ\\.spec\\.js$)\"",
"posttest": "scripts/run-script test",
2018-02-08 17:31:30 +01:00
"precommit": "scripts/lint-staged",
2017-12-05 11:46:02 +01:00
"prepare": "scripts/run-script prepare",
"pretest": "eslint --ignore-path .gitignore .",
"test": "jest \"^(?!.*\\.integ\\.spec\\.js$)\"",
"test-integration": "jest \".integ\\.spec\\.js$\""
},
"workspaces": [
2018-02-01 11:28:16 +01:00
"@xen-orchestra/*",
"packages/*"
]
2017-01-10 12:21:59 +01:00
}