Files
xen-orchestra/package.json

72 lines
1.9 KiB
JSON
Raw Normal View History

2017-01-10 12:21:59 +01:00
{
2017-01-10 15:54:29 +01:00
"devDependencies": {
2018-09-24 13:39:31 +02:00
"@babel/core": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-0",
2018-10-02 11:36:05 +02:00
"babel-eslint": "^10.0.1",
2019-03-01 09:44:12 +01:00
"babel-jest": "^24.1.0",
2018-02-09 15:01:00 +01:00
"benchmark": "^2.1.4",
2019-07-04 16:01:07 +02:00
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
2019-09-02 09:45:38 +02:00
"eslint-config-standard": "14.1.0",
"eslint-config-standard-jsx": "^8.1.0",
2019-04-19 16:27:11 +02:00
"eslint-plugin-eslint-comments": "^3.1.1",
2017-11-17 17:42:48 +01:00
"eslint-plugin-import": "^2.8.0",
2019-05-17 16:31:39 +02:00
"eslint-plugin-node": "^9.0.1",
2018-08-28 20:29:29 +02:00
"eslint-plugin-promise": "^4.0.0",
2018-02-07 10:39:32 +01:00
"eslint-plugin-react": "^7.6.1",
2018-08-29 15:05:34 +02:00
"eslint-plugin-standard": "^4.0.0",
"exec-promise": "^0.7.0",
2019-09-02 09:45:38 +02:00
"flow-bin": "^0.106.3",
2019-07-04 16:01:07 +02:00
"globby": "^10.0.0",
"husky": "^3.0.0",
2019-03-01 09:44:12 +01:00
"jest": "^24.1.0",
"lodash": "^4.17.4",
2018-02-08 17:45:16 +01:00
"prettier": "^1.10.2",
2019-07-04 16:01:07 +02:00
"promise-toolbox": "^0.13.0",
2017-12-05 11:46:02 +01:00
"sorted-object": "^2.0.1"
},
"engines": {
"yarn": "^1.7.0"
},
2018-09-24 13:39:31 +02:00
"husky": {
"hooks": {
"pre-commit": "scripts/lint-staged"
}
},
2017-11-08 12:05:03 +01:00
"jest": {
"collectCoverage": true,
2018-02-13 12:05:52 +01:00
"projects": [
"<rootDir>"
2018-02-13 12:05:52 +01:00
],
2017-11-08 12:05:03 +01:00
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/dist/",
"/xo-server-test/",
2018-02-07 14:43:14 +01:00
"/xo-web/"
2017-11-08 12:05:03 +01:00
],
"testRegex": "\\.spec\\.js$",
"timers": "fake",
"transform": {
"\\.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",
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$\"",
"travis-tests": "scripts/travis-tests"
},
"workspaces": [
2018-02-01 11:28:16 +01:00
"@xen-orchestra/*",
"packages/*"
]
2017-01-10 12:21:59 +01:00
}