Files
xen-orchestra/package.json

88 lines
2.3 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/eslint-parser": "^7.13.8",
2018-09-24 13:39:31 +02:00
"@babel/register": "^7.0.0",
2021-11-02 13:43:49 +01:00
"babel-jest": "^27.3.1",
2018-02-09 15:01:00 +01:00
"benchmark": "^2.1.4",
"eslint": "^8.7.0",
2021-04-02 15:34:19 +02:00
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^17.0.0-0",
"eslint-config-standard-jsx": "^11.0.0-0",
2020-12-04 12:09:32 +01:00
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-promise": "^6.0.0",
2020-12-04 12:09:32 +01:00
"eslint-plugin-react": "^7.21.5",
"exec-promise": "^0.7.0",
2020-06-03 10:58:18 +02:00
"globby": "^11.0.1",
"handlebars": "^4.7.6",
2020-06-03 10:58:18 +02:00
"husky": "^4.2.5",
2021-11-02 13:43:49 +01:00
"jest": "^27.3.1",
"lint-staged": "^12.0.3",
"lodash": "^4.17.4",
2020-06-03 10:58:18 +02:00
"prettier": "^2.0.5",
2021-11-02 13:43:49 +01:00
"promise-toolbox": "^0.20.0",
"sorted-object": "^2.0.1",
"vuepress": "^1.4.1"
},
"engines": {
"yarn": "^1.7.0"
},
2018-09-24 13:39:31 +02:00
"husky": {
"hooks": {
"pre-commit": "lint-staged && scripts/lint-staged"
2018-09-24 13:39:31 +02:00
}
},
2017-11-08 12:05:03 +01:00
"jest": {
"moduleNameMapper": {
"^(@vates/[^/]+)$": [
"$1/src",
"$1"
],
"^(@xen-orchestra/[^/]+)$": [
"$1/src",
"$1"
],
"^(value-matcher)$": "$1/src",
"^(vhd-cli)$": "$1/src",
"^(xo-[^/]+)$": [
"$1/src",
"$1"
]
},
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$"
2017-11-08 12:05:03 +01:00
},
"lint-staged": {
2020-06-03 10:58:18 +02:00
"*.{md,ts,ts}": "prettier --write"
},
"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$)\"",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prettify": "prettier --ignore-path .gitignore --write '**/*.{cjs,js,jsx,md,mjs,ts,tsx}'",
"test": "npm run test-lint && npm run test-unit",
"test-integration": "jest \".integ\\.spec\\.js$\"",
"test-lint": "eslint --ignore-path .gitignore .",
"test-unit": "jest \"^(?!.*\\.integ\\.spec\\.js$)\" && scripts/run-script test",
"travis-tests": "scripts/travis-tests"
},
"workspaces": [
2020-05-29 15:08:33 +02:00
"@*/*",
"packages/*"
]
2017-01-10 12:21:59 +01:00
}