-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
58 lines (58 loc) · 2.29 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
52
53
54
55
56
57
58
{
"name": "snyk-azure-pipelines-task",
"version": "0.2.2",
"description": "",
"main": "index.js",
"scripts": {
"install_dependencies": "npm install && cd snykTask && npm install && cd .. && cd ops/deploy && npm install",
"build": "npm run install_dependencies && npm run compile && npm run enhancer:compile && npm run deploy:compile",
"build:clean": "npm run clean:install_dependencies && npm run compile && npm run enhancer:compile && npm run deploy:compile",
"clean:install_dependencies": "npm ci && cd snykTask && npm ci && cd .. && cd ops/deploy && npm ci",
"pretest": "npm run build",
"test": "npm run test:checks && npm run test:unit",
"test:checks": "npm run eslint && npm run format:check",
"test:snyk": "npx snyk test --severity-threshold=high",
"test:unit": "jest",
"compile": "tsc -b snykTask/tsconfig.json",
"eslint": "eslint --cache 'snykTask/{src,test,public/js/{!(build)}}/**/*.{js,ts}'",
"format:check": "prettier --check '**/*.{js,ts,json,yaml,yml,md,html}'",
"format": "prettier --write '**/*.{js,ts,json,yaml,yml,md,html}'",
"enhancer:compile": "tsc -b ui/enhancer/tsconfig.json",
"deploy:compile": "tsc -b ops/deploy/tsconfig.json",
"deploy:test": "jest --config=ops/deploy/jest.config.js",
"deploy:eslint": "eslint --cache 'ops/deploy/**/*.ts'",
"deploy:run": "node ops/deploy/dist/deploy.js"
},
"author": "snyk.io",
"license": "Apache-2.0",
"dependencies": {
"azure-pipelines-task-lib": "^4.13.0",
"jquery": "^3.4.1",
"semver": "^7.6.0",
"vss-web-extension-sdk": "^5.141.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.1",
"@types/jest": "^27.0.0",
"@types/node": "^16.11.10",
"@types/q": "^1.5.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"fs-extra": "^9.1.0",
"jest": "^28.0.0",
"mock-fs": "^4.10.4",
"nock": "^13.5.4",
"prettier": "^2.3.1",
"semantic-release": "^17.0.4",
"tfx-cli": "^0.7.11",
"ts-jest": "^28.0.8",
"typescript": "^5.1.6",
"uuid": "^9.0.1"
}
}