-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.94 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "chef-tasks",
"description": "Chef Integration for Azure Pipelines",
"author": "Chef Software, Inc.",
"scripts": {
"all": "npm run lint && npm run clean && npm run test && npm run compile:helpers && npm run build && npm run package",
"dev": "npm run compile:helpers && npm run build:dev && npm run build:patch",
"clean": "rimraf build && rimraf bin",
"compile:helpers": "tsc --project scripts/tsconfig.json",
"lint": "tslint --config tslint.json tasks/**/*.ts",
"test": "cross-env TS_NODE_PROJECT=\"src/tsconfig.json\" TESTS_RUNNING=\"1\" nyc mocha --config mocha.json",
"build": "npm run build:preview && npm run build:release && npm run build:patch",
"build:preview": "webpack-cli --mode development",
"build:release": "webpack-cli --mode production",
"build:dev": "webpack-cli --mode development --env.dev",
"build:patch": "node bin/patch",
"package": "npm run package:preview && npm run package:release",
"package:preview": "tfx extension create --manifests vss-extension.json --overrides-file build/conf/preview.json --output-path build/",
"package:release": "tfx extension create --manifests vss-extension.json --overrides-file build/conf/release.json --output-path build/",
"package:dev": "tfx extension create --manifests vss-extension.json --overrides-file build/conf/dev.json --output-path build/",
"validate": "tfx extension isvalid --vsix"
},
"nyc": {
"reportDir": "build/tests/coverage",
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"cobertura",
"html"
],
"sourceMap": true,
"instrument": true
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"chai": "^4.2.0",
"chai-files": "^1.4.0",
"commander": "^6.1.0",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.2",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"mkdirp": "^1.0.4",
"mocha": "^8.1.3",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"sprintf-js": "^1.1.2",
"tfx-cli": "^0.8.3",
"ts-loader": "^8.0.4",
"ts-node": "^8.10.2",
"tsconfig-glob": "^0.4.3",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"typings": "^2.1.1",
"uuidv5": "^1.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"azure-pipelines-task-lib": "^2.11.1",
"crypto-js": "^4.0.0",
"dot-object": "^2.1.4",
"dotenv": "^8.2.0",
"is-admin": "^2.1.1",
"is-root": "^2.1.0",
"moment": "^2.29.0",
"node-rsa": "^1.1.1",
"replace-in-file": "^6.1.0",
"spawn-sync": "^2.0.0"
}
}