forked from snyk/snyk-azure-pipelines-task
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.47 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"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",
"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",
"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"
},
"release": {
"branches": [
"master"
],
"repositoryUrl": "https://github.com/snyk/snyk-azure-pipelines-task",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"publishCmd": "scripts/ci-deploy.sh ${nextRelease.version}"
}
]
]
},
"author": "snyk.io",
"license": "Apache-2.0",
"dependencies": {
"azure-pipelines-task-lib": "3.3.1",
"jquery": "^3.4.1",
"vss-web-extension-sdk": "^5.141.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@types/jest": "^24.0.18",
"@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": "^26.4.2",
"mock-fs": "^4.10.4",
"prettier": "^2.3.1",
"semantic-release": "^17.0.4",
"tfx-cli": "^0.7.11",
"ts-jest": "^26.3.0",
"typescript": "^4.5.2"
}
}