-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
118 lines (118 loc) · 3.45 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "github-tools-vsts",
"version": "1.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marceloavf/github-tools-vsts"
},
"bugs": {
"url": "https://github.com/marceloavf/github-tools-vsts/issues"
},
"scripts": {
"clean": "vsts-build-tools-clean",
"prebuild": "vsts-build-tools-prebuild",
"lint": "eslint Src",
"test:unit": "nyc ava -v",
"test": "npm run lint && npm run test:unit",
"codecov": "codecov -f coverage/coverage-final.json",
"dev": "cross-env BUILD_TARGET=githubReleasePublish node Config/build.js && node Tasks/GithubReleasePublish/githubReleasePublish.js",
"dev:debug": "cross-env BUILD_TARGET=githubReleasePublish node Config/build.js && node --inspect-brk Tasks/GithubReleasePublish/githubReleasePublish.js",
"build": "cross-env NODE_ENV=production node Config/build.js",
"package": "cross-env BUILD_TARGET=package npm run build && npm run clean && vsts-build-tools-package --noversiontransform",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"semantic-release": "semantic-release"
},
"dependencies": {
"@semantic-release/changelog": "^1.0.0",
"azure-pipelines-task-lib": "^2.7.1",
"deep-object-diff": "^1.1.0",
"js-object-pretty-print": "^0.3.0"
},
"devDependencies": {
"@semantic-release/git": "^3.0.0",
"@types/fs-extra": "^4.0.0",
"@types/ini": "^1.3.29",
"@types/node": "^6.0.0",
"@types/q": "^1.0.3",
"all-contributors-cli": "^4.10.1",
"async": "^2.6.0",
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"cfonts": "^1.1.3",
"chalk": "^2.3.0",
"check-dependencies": "^1.1.0",
"child_process": "^1.0.2",
"codecov": "^3.0.0",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.3",
"del": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"gl-vsts-tasks-build-scripts": "^0.4.0-beta.0",
"imagemin-webpack-plugin": "^1.6.1",
"multispinner": "^0.2.1",
"npm-run-all": "2.3.0",
"nyc": "^11.6.0",
"path": "^0.12.7",
"semantic-release": "^13.1.3",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0"
},
"nyc": {
"include": [
"Src/**/*.js",
"Common/**/*.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
{
"path": "@semantic-release/npm",
"npmPublish": false
},
"@semantic-release/git",
"@semantic-release/github"
],
"publish": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
{
"path": "@semantic-release/npm",
"npmPublish": false
},
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci] ***NO_CI***\n\n${nextRelease.notes}"
},
"@semantic-release/github"
]
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
}
}