-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@kie/chain-status",
"private": true,
"homepage": "https://kiegroup.github.io/chain-status/",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "lerna run test",
"test:report": "lerna run test -- --coverage --testResultsProcessor=jest-sonar-reporter",
"build": "lerna run build -- --if-present",
"predeploy": "lerna run predeploy",
"deploy": "lerna run deploy",
"pre-commit": "lerna run pre:commit",
"pre-push": "lerna run pre:push"
},
"git-pre-hooks": {
"pre-commit": "npm run pre-commit",
"pre-push": "npm run pre-push"
},
"jest": {
"testEnvironment": "node"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.19.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"git-pre-hooks": "^1.2.1",
"jest": "^25.5.1",
"jest-expect-message": "^1.0.2",
"jest-sonar-reporter": "^2.0.0",
"lerna": "^4.0.0",
"prettier": "^2.0.5"
},
"engines": {
"node": ">=14.0.0"
}
}