-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
140 lines (140 loc) · 5.28 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "zarro",
"version": "1.188.0",
"description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
"bin": {
"zarro": "index.js"
},
"homepage": "https://github.com/fluffynuts/zarro",
"main": "index.js",
"scripts": {
"commit": "node commit-all.js",
"push": "node push-all.js",
"verify-submodules": "node index.js verify-submodules",
"verify-no-debugger": "node index.js @",
"clean-cache": "rimraf .jest-cache",
"pretest": "run-s clean-cache build verify-submodules",
"test": "jest",
"quick-test": "jest -o --no-cache",
"clear-console": "console-cls",
"autotest-once": "run-s clear-console build quick-test",
"autotest": "nodemon -w gulp-tasks/**/*.ts -i gulp-tasks/modules/fetch-github-release -w tests/**/*.ts -w types.d.ts -x \"npm run autotest-once || cd .\" -e ts",
"autotest-full-once": "run-s clear-console build test",
"autotest-full": "nodemon -w gulp-tasks -w tests -w types.d.ts -x \"npm run autotest-full-once || cd .\" -e ts",
"preautobuild": "run-s build-fetch-github-release",
"autobuild": "nodemon -w gulp-tasks/**/*.ts -i gulp-tasks/modules/fetch-github-release -w tests/**/*.ts -w types.d.ts -x \"npm run build || cd .\" -e ts",
"prestart": "run-s build",
"start": "node index.js",
"zarro": "node index.js",
"increment-package-version-beta": "cross-env VERSION_INCREMENT_STRATEGY=patch run-s \"zarro increment-package-json-version\"",
"prerelease-beta": "run-s build verify-no-debugger test",
"release-beta": "cross-env VERSION_INCREMENT_STRATEGY=patch BETA=1 run-s \"zarro release-npm\"",
"prerelease": "run-s verify-up-to-date test",
"release": "cross-env VERSION_INCREMENT_STRATEGY=minor run-s \"zarro release-npm\"",
"pull-gulp-tasks": "cd gulp-tasks && git checkout master && git pull --rebase",
"pull-repo-root": "git pull --rebase",
"pull": "run-s pull-gulp-tasks pull-repo-root",
"prebuild": "rimraf tsconfig.tsbuildinfo",
"build": "run-p build-zarro build-fetch-github-release",
"build-zarro": "tsc",
"prebuild-fetch-github-release": "rimraf gulp-tasks/modules/fetch-github-release/dist",
"build-fetch-github-release": "tsc -p gulp-tasks/modules/fetch-github-release/tsconfig.json",
"postbuild-fetch-github-release": "run-s delete-fetch-github-release-dist-shadow shadow-fetch-github-release-dist",
"delete-fetch-github-release-dist-shadow": "rimraf gulp-tasks/modules/fetch-github-release/dist-copy",
"shadow-fetch-github-release-dist": "node index.js shadow-fetch-github-release-dist",
"gulp": "gulp",
"test-npm-gulp-task": "echo \"this is a test\"",
"verify-up-to-date": "run-s \"zarro -- verify-up-to-date\"",
"echo": "echo foo",
"seq": "run-s \"zarro -- seq\"",
"missing": "node index.js missing",
"empty": "node index.js empty",
"external": "run-s \"zarro external\""
},
"dependencies": {
"@octokit/rest": "^20.0.1",
"ansi-colors": "^4.1.1",
"array.prototype.flatmap": "^1.2.4",
"bent": "^7.3.12",
"cross-env": "^7.0.3",
"cross-fetch": "^4.0.0",
"decompress": "^4.2.1",
"del": "^5.1.0",
"event-stream": "^4.0.1",
"exec-step": "^0.17.0",
"fancy-log": "^1.3.3",
"gulp": "^5.0.0",
"gulp-debug": "^4.0.0",
"gulp-dotnet-cli": "^1.1.0",
"gulp-edit-xml": "^3.1.1",
"gulp-filter": "^6.0.0",
"gulp-msbuild": "^0.11.0",
"lodash.kebabcase": "^4.1.1",
"node-nuget-client": "^0.12.0",
"npm-run-all": "^4.1.5",
"plugin-error": "^1.0.1",
"readline": "^1.3.0",
"request": "^2.88.2",
"require-dir": "^1.2.0",
"rimraf": "^3.0.2",
"run-sequence": "^2.2.1",
"sax": "^1.2.4",
"semver": "^7.5.4",
"simple-git": "^3.25.0",
"temp": "^0.9.4",
"through2": "^3.0.2",
"undertaker-forward-reference": "^1.0.2",
"unfetch": "^5.0.0",
"vinyl": "^2.2.1",
"which": "^2.0.2",
"xml2js": "^0.6.2",
"yafs": "^1.35.0",
"zarro": "^1.183.0"
},
"files": [
"gulp-tasks/**/*.js",
"gulp-tasks/modules/fetch-github-release/dist-copy/*.js",
"gulp-tasks/modules/fetch-github-release/dist-copy/*.d.ts",
"gulp-tasks/modules/fetch-github-release/src/*.ts",
"gulp-tasks/modules/fetch-github-release/src/*.js",
"index-modules/**/*.js",
"types.d.ts",
"tsconfig.json"
],
"author": {
"name": "Davyd McColl",
"url": "https://github.com/fluffynuts"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@jest/types": "^29.6.1",
"@types/decompress": "^4.2.4",
"@types/event-stream": "^3.3.34",
"@types/fancy-log": "^1.3.1",
"@types/gulp": "^4.0.8",
"@types/jest": "^29.5.3",
"@types/node": "^13.13.40",
"@types/request": "^2.48.8",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.5.0",
"@types/through2": "^2.0.38",
"@types/typescript": "^2.0.0",
"@types/which": "^3.0.3",
"@types/xml2js": "^0.4.8",
"@types/yargs": "^15.0.13",
"console-cls": "^1.2.2",
"debug": "^4.3.4",
"debugger-is-attached": "^1.2.0",
"expect-even-more-jest": "^1.19.0",
"filesystem-sandbox": "^1.20.0",
"ioredis": "^5.3.2",
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"proxyquire": "^2.1.3",
"redlock": "^5.0.0-beta.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6",
"yargs": "^16.2.0"
}
}