-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "chef-vsts-tasks",
"description": "Chef Integration for Azure Pipelines",
"author": "Chef Software, Inc.",
"scripts": {
"initdev:npm": "npm install && cd tasks/update_environment && npm install && cd ../..",
"initdev:typings": "pushd tasks && typings install && popd",
"initdev": "npm run initdev:npm && npm run initdev:typings",
"clean": "rimraf build",
"build:tasks": "npm run clean && npm run build:tasks:noclean",
"build:tasks:noclean": "npm run compile:scripts && node bin/build.js run",
"compile:scripts": "tsc --project scripts/tsconfig.json"
},
"devDependencies": {
"@types/node": "^9.6.5",
"commander": "^2.12.1",
"fs-extra": "^2.0.0",
"mkdirp": "^0.5.1",
"q": "^1.4.1",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"sprintf-js": "^1.0.3",
"tfx-cli": "^0.3.49",
"tsconfig-glob": "^0.4.3",
"tslint": "^4.5.1",
"typescript": "^2.2.1",
"typings": "^2.1.0",
"uuidv5": "^1.0.0"
},
"dependencies": {
"dot-object": "^1.7.0",
"is-admin": "^2.1.1",
"is-elevated": "^2.0.1",
"is-root": "^1.0.0",
"q": "^1.4.1",
"vsts-task-lib": "^1.1.0"
}
}