-
Notifications
You must be signed in to change notification settings - Fork 433
/
Copy pathpackage.json
33 lines (33 loc) · 1.09 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
{
"name": "Sarif2JUnitConverter",
"description": "Sarif2JUnitConverter",
"scripts": {
"build": "npm run clean && npm run lint && npm run transpile ",
"package": "npm prune -production && npm run copy",
"copy": "ncp ./node_modules ./task/node_modules && ncp ./dist/src ./task",
"clean": "rimraf --glob ./dist/src && rimraf --glob ./dist/test && rimraf --glob ./task/*.js && rimraf --glob ./task/*.js.map && rimraf --glob ./task/node_modules",
"transpile": "tsc -p ./",
"lint": "tslint -c tslint.json src/*.ts test/*.ts",
"test": "npm run transpile && pwd && jest --config jest.config.js"
},
"main": "test.js",
"dependencies": {
"azure-pipelines-task-lib": "^4.10.1",
"fs": "0.0.1-security",
"ncp": "^2.0.0",
"rimraf": "^5.0.5",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"author": "Richard Fennell",
"license": "MIT"
}