-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@haibun/web-accessibility-axe",
"type": "module",
"version": "1.33.6",
"description": "web accessibility test using axe for haibun",
"main": "build/a11y-axe-stepper.js",
"files": [
"build/",
"tsconfig.json"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint -c .eslintrc.json --ext .ts,.js src",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test-nodemon": "npx nodemon -V -e ts --watch './src/**/**.ts' --exec 'clear; npm run build && npm run test'",
"coverage": "jest --config jest.config.ts --coverage",
"test-watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"build": "tsc -b .",
"build-watch": "tsc --watch",
"tsc": "tsc",
"prepublishOnly": "tsc -b .",
"preversion": "npm run lint",
"version": "npm run format && git add -A src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@haibun/cli": "1.33.6",
"@haibun/core": "1.33.6",
"@haibun/domain-storage": "1.33.6",
"@haibun/domain-webpage": "1.33.6",
"@haibun/storage-mem": "1.33.6",
"@haibun/web-playwright": "1.33.6",
"@haibun/web-server-express": "1.33.6",
"@types/node": "^20.3.1",
"axe-core": "^4.6.2",
"axe-html-reporter": "^2.2.3",
"playwright": "^1.40.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"eslint": "^8.31.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"typescript": "^5.2.2"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 182
}
}