-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "sheriff-azure-devops-extension",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "node ./scripts/build.js",
"install": "run-p install:*",
"install:tasks": "find ./tasks -type d -regex \".*V[0-9]\" -maxdepth 2 -exec npm --prefix {} install \\;",
"test": "run-p test:*",
"test:js": "eslint .",
"test:tasks": "find ./tasks -type d -regex \".*V[0-9]\" -maxdepth 2 -exec npm --prefix {} test \\;"
},
"repository": {
"type": "git",
"url": "git@github.com:frontierhq/sheriff-azure-devops-extension.git"
},
"author": "Frontier",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/frontierhq/sheriff-azure-devops-extension/issues"
},
"homepage": "https://github.com/frontierhq/sheriff-azure-devops-extension#readme",
"dependencies": {
"fs-extra": "^11.1.1",
"rimraf": "^5.0.1",
"shelljs": "^0.8.5",
"tempdir": "^2.0.0",
"tfx-cli": "^0.17.0",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5"
}
}