This repository has been archived by the owner on Nov 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "rust-vsts",
"version": "1.0.0",
"description": "Rust extension for Azure DevOps",
"main": "index.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"compile": "tsc",
"build": "npm run format && gulp",
"package": "gulp pre-package && tfx extension create --root ./tmp --manifest-globs ./vss-extension.json --output-path ./dist",
"deploy": "tfx extension publish",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/spontoreau/rust-azure-devops.git"
},
"keywords": [
"rust",
"rust language",
"cargo",
"build",
"azure devops",
"ci",
"continious integration"
],
"author": "Sylvain Pontoreau",
"license": "MIT",
"bugs": {
"url": "https://github.com/spontoreau/rust-azure-devops/issues"
},
"homepage": "https://github.com/spontoreau/rust-azure-devops#readme",
"dependencies": {
"azure-pipelines-task-lib": "^2.7.7"
},
"devDependencies": {
"@types/node": "^10.12.21",
"@types/q": "^1.5.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-json-editor": "^2.5.0",
"gulp-rename": "^1.4.0",
"gulp-run": "^1.7.1",
"gulp-typescript": "^5.0.0",
"moment": "^2.24.0",
"prettier": "^1.16.4",
"run-sequence": "^2.2.1",
"tfx-cli": "^0.6.4",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.1",
"yargs": "^12.0.5"
}
}