-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "blackduck-security-scan",
"version": "1.10.0",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map",
"lint": "eslint src/**/*.ts",
"test": "nyc --reporter=html --reporter=text mocha --require ts-node/register test/unit/**/*.spec.ts test/unit/*.spec.ts",
"all": "npm run format && npm run lint && npm run build && npm run package && npm run test",
"format": "prettier 'src/**/*.ts' --write",
"integraionTestBuild": "tsc --project tsconfig-int-test.json",
"integrationTest": "npm run build && npm run integraionTestBuild && mocha test/integration/_suite.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"azure-pipelines-task-lib": "^4.2.0",
"azure-pipelines-tool-lib": "^2.0.7",
"dom-parser": "^0.1.6",
"vss-web-extension-sdk": "^5.141.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/dom-parser": "^0.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@types/q": "^1.5.5",
"@types/sinon": "^10.0.14",
"@types/unzipper": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vercel/ncc": "^0.36.1",
"chai": "^4.3.9",
"eslint": "^8.1.0",
"eslint-plugin-jest": "^26.0.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"path": "^0.12.7",
"nock": "13.0.4",
"prettier": "^2.8.7",
"sinon": "^15.0.4",
"sync-request": "^6.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"unzipper": "^0.10.11",
"uuid": "^8.3.2"
},
"description": ""
}