-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.43 KB
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": "promote",
"description": "Update NuGet packages.",
"main": "./promote-package/Task.js",
"scripts": {
"build": "tsc -p src/",
"clean": "rm -r promote-package ; rm *.vsix",
"test": "tsc && nyc mocha tests/Suite.js",
"postbuild": "copy-node-modules ./ promote-package ; cp task.json promote-package/ ; cp ./images/icon.png promote-package/ ; cp ./images/how-to.png promote-package/",
"package:tfx": "tfx extension create --manifest-globs vss-extension.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Haplo-tech/promote.git"
},
"keywords": [
"vsts",
"task"
],
"author": "Haplo",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Haplo-tech/promote/issues"
},
"homepage": "https://github.com/Haplo-tech/promote#readme",
"dependencies": {
"@types/query-string": "^6.2.0",
"azure-devops-node-api": "^7.0.0",
"azure-pipelines-task-lib": "^2.7.7",
"npm": "^6.7.0",
"path": "^0.12.7",
"requirejs": "^2.3.6",
"typed-rest-client": "^1.0.11"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.1",
"@types/node": "^10.12.18",
"@types/q": "^1.5.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"copy-node-modules": "^1.1.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.4.3"
}
}