-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.55 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
{
"name": "gl-vsts-tasks-build-scripts",
"version": "0.1.0",
"description": "This package provides NPM utility commands to ease Azure Pipelines Tasks extensions developement. This currently powers the development process behind Geek Learning's extensions.",
"bin": {
"vsts-build-tools-clean": "./run/vsts-build-tools-clean",
"vsts-build-tools-install": "./run/vsts-build-tools-install",
"vsts-build-tools-node-modclean": "./run/vsts-build-tools-node-modclean",
"vsts-build-tools-package": "./run/vsts-build-tools-package",
"vsts-build-tools-prebuild": "./run/vsts-build-tools-prebuild"
},
"scripts": {
"build": "tsc --newLine lf",
"lint": "eslint src/**/*.ts",
"schema:task": "json2ts --input tasks.schema.json --output src/task.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/geeklearningio/gl-vsts-tasks-build-scripts"
},
"files": [
"dist",
"run"
],
"keywords": [
"Azure",
"DevOps",
"Pipelines",
"Tasks",
"VSTS",
"Build"
],
"contributors": [
{
"name": "Geek Learning",
"url": "https://github.com/geeklearningio"
},
{
"name": "Cyprien Autexier",
"url": "https://github.com/sandorfr"
},
{
"name": "Adrien Siffermann",
"url": "https://github.com/asiffermann"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/geeklearningio/gl-vsts-tasks-build-scripts/issues"
},
"homepage": "https://github.com/geeklearningio/gl-vsts-tasks-build-scripts",
"devDependencies": {
"@types/async": "^3.0.8",
"@types/fs-extra": "^8.1.0",
"@types/lodash": "^4.14.149",
"@types/minimist": "^1.2.0",
"@types/node": "^12.0.5",
"@types/semver": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jasmine": "^3.4.0",
"json-schema-to-typescript": "^6.1.3",
"prettier": "^1.19.1",
"typescript": "3.5.1"
},
"dependencies": {
"async": "^3.2.0",
"fs-extra": "8.1.0",
"glob": "7.1.6",
"lodash": "4.17.19",
"minimist": "1.2.3",
"modclean": "2.1.0",
"semver": "7.1.3",
"tfx-cli": "0.7.11",
"tsconfig-glob": "^0.4.3"
}
}