forked from cloudpups/authenticated-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.85 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
{
"name": "authenticated-scripts",
"version": "1.0.0",
"description": "Authenticated Scripts",
"keywords": [
"extensions",
"Azure DevOps",
"Visual Studio Team Services"
],
"license": "MIT",
"scripts": {
"initdev": "npm run initdev:npm",
"initdev:npm": "npm run initdev:npm:base & npm run initdev:npm:tasks",
"initdev:npm:base": "npm install --no-progress --no-update-notifier",
"initdev:npm:tasks": "glob-exec --parallel --foreach \"tasks/*/tsconfig.json\" -- \"cd {{file.dir}} && npm install --no-update-notifier --no-progress\"",
"compile:tasks": "glob-exec \"tasks/*/tsconfig.json\" -- \"tsc -b {{files.join(' ')}}\"",
"build": "npm run build:tasks",
"build:tasks": "npm run compile:tasks",
"clean": "rimraf ./dist",
"postbuild": "npm run package-extension -- --rev-version",
"package-extension": "tfx extension create --manifests vss-extension.json",
"publish-extension": "tfx extension publish --manifests vss-extension.json",
"test": "env TEST_REPORT_FILENAME=test-results.xml jest --verbose"
},
"dependencies": {
"azure-devops-extension-api": "~1.157.0",
"azure-devops-extension-sdk": "~2.0.11",
"react": "~16.13.1",
"react-dom": "~16.13.1"
},
"devDependencies": {
"@types/core-js": "^2.5.0",
"@types/fs-extra": "^5.0.4",
"@types/node": "^8.10.61",
"@types/promise-retry": "^1.1.1",
"@types/temp": "^0.8.29",
"@types/x2js": "0.0.27",
"@types/xmldom": "^0.1.28",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/eslint-plugin-tslint": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.5.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"glob-exec": "^0.1.1",
"tfx-cli": "^0.7.11",
"tslint": "^5.20.1",
"typescript": "^3.9.7"
}
}