-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "sarif-js-sdk",
"version": "0.0.0",
"private": true,
"description": "JavaScript code and supporting files for working with the 'Static Analysis Results Interchange Format' (SARIF, see oasis-tcs/sarif-spec)",
"repository": "https://github.com/microsoft/sarif-js-sdk.git",
"license": "MIT",
"author": "Microsoft Corporation",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --watch",
"clean": "tsc --build --clean",
"lint": "eslint . --ext .js,.ts",
"prepare": "npm run build",
"test": "npm run test --workspaces"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.37",
"@types/sarif": "^2.1.3",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-unicorn": "^29.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"release-it": "^14.14.2",
"release-it-lerna-changelog": "^3.1.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"volta": {
"node": "14.19.1",
"npm": "8.5.5"
}
}