-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "pass-acceptance-testing",
"version": "1.14.0-SNAPSHOT",
"description": "Smoke testing for the PASS application",
"repository": "https://github.com/eclipse-pass/pass-acceptance-testing.git",
"author": "",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"test": "./runtest.sh",
"testDeployment": "./rundeploymenttest.sh",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"minimist": "^1.2.8",
"prettier": "^2.7.1",
"testcafe": "3.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=18"
}
}