-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 915 Bytes
/
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
{
"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/out-review": "1.9",
"@types/sarif": "^2.1.4"
}
}