forked from cake-build/cake-vso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 792 Bytes
/
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
{
"name": "cake-task",
"version": "1.0.0",
"description": "Run a Cake script for your Azure DevOps build/release task.",
"main": "index.js",
"scripts": {
"build": "npm run transcompile && npm run bundle",
"transcompile": "tsc",
"bundle": "ncc build src/cake.ts -o Task",
"prestart": "npm run build",
"start": "node Task/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cake-build/cake-vso.git"
},
"keywords": [
"cake",
"cake-build",
"azure-devops"
],
"author": "Cake Organization",
"license": "MIT",
"dependencies": {
"azure-pipelines-task-lib": "2.9.3"
},
"devDependencies": {
"@types/node": "12.12.6",
"@types/q": "1.5.2",
"@zeit/ncc": "0.21.1",
"typescript": "3.8.3"
}
}