-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "@haibun/sarif",
"version": "1.9.3",
"description": "sarif index for haibun",
"main": "build/sarif",
"files": [
"build/"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint -c .eslintrc.json --ext .ts,.js src",
"test": "jest --config jest.config.ts",
"test-haibun": "build/cli.js test/projects/web",
"coverage": "jest --config jest.config.ts --coverage",
"test-watch": "jest --watch",
"build": "tsc -b .",
"tsc-watch": "tsc --watch",
"tsc": "tsc",
"prepare": "npm run build",
"prepublishOnly": "tsc -b .",
"preversion": "npm run lint",
"version": "npm run format && git add -A src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@haibun/core": "1.9",
"@haibun/domain-storage": "1.9",
"@haibun/domain-webpage": "^1.9.3",
"axios": "^0.27.2",
"lighthouse": "^9.6.3",
"playwright": "^1.23.2",
"playwright-lighthouse": "^2.2.2",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"devDependencies": {
"@haibun/web-http": "^1.9.3",
"@haibun/web-server-express": "^1.9.3",
"@types/jest": "^28.1.4",
"jest": "^28.1.2",
"ts-jest": "^28.0.5"
}
}