-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.27 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
{
"name": "turbo-gulp",
"version": "0.22.1",
"description": "Gulp tasks to boost high-quality projects.",
"author": "Charles Samborski <[email protected]> (https://demurgos.net)",
"license": "MIT",
"private": true,
"main": "dist/lib/index",
"types": "dist/lib/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/demurgos/turbo-gulp.git"
},
"homepage": "https://demurgos.github.io/turbo-gulp",
"scripts": {
"build": "gulp lib:build",
"watch": "gulp lib:watch",
"test": "gulp test",
"lint": "gulp lint",
"format": "gulp format",
"typedoc": "gulp lib:typedoc",
"dist": "gulp lib:dist",
"prepare": "gulp all:tsconfig.json && gulp tslint.json && gulp dist",
"pretest": "gulp lint",
"prepublishOnly": "echo \"Use \\`gulp lib:publish\\`\" && exit 1",
"cov": "c88 --reporter text --reporter lcov-file --reporter html --color -- /home/demurgos/.nvm/versions/node/v13.7.0/bin/node /data/projects/various/turbo-gulp/node_modules/mocha/bin/mocha --ui bdd --reporter spec --colors /data/projects/various/turbo-gulp/build/test/test.cjs.js"
},
"pre-commit": {
"run": [
"lint"
]
},
"engines": {
"node": ">=13.2"
},
"dependencies": {
"@types/fancy-log": "^1.3.1",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/glob-watcher": "^5.0.0",
"@types/gulp-rename": "^0.0.33",
"@types/gulp-sourcemaps": "^0.0.32",
"@types/istanbul-lib-report": "^3.0.0",
"@types/merge2": "^1.3.0",
"@types/minimatch": "^3.0.3",
"@types/semver": "^7.1.0",
"@types/tmp": "^0.1.0",
"@types/undertaker": "^1.2.2",
"@types/undertaker-registry": "^1.0.1",
"@types/vinyl": "^2.0.4",
"@types/vinyl-fs": "^2.4.11",
"async-done": "^1.3.2",
"c88": "^0.3.4",
"del": "^5.1.0",
"fancy-log": "^1.3.3",
"fs-extra": "^8.1.0",
"furi": "2.0.0",
"glob": "^7.1.6",
"glob-watcher": "^5.0.3",
"gulp-mocha": "^7.0.2",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-tslint": "^8.1.4",
"gulp-typedoc": "^2.2.4",
"gulp-typescript": "^5.0.1",
"incident": "^3.2.0",
"istanbul-lib-report": "^3.0.0",
"merge2": "^1.3.0",
"minimatch": "^3.0.4",
"mocha": "^7.0.1",
"plugin-error": "^1.0.1",
"semver": "^7.1.2",
"tmp": "^0.1.0",
"ts-tagged": "^1.0.0",
"tslint": "^6.0.0",
"typedoc": "^0.16.9",
"typedoc-plugin-external-module-name": "^3.0.0",
"typescript": "^3.7.5",
"undertaker": "^1.2.1",
"undertaker-registry": "^1.0.1",
"vinyl": "^2.2.0",
"vinyl-buffer": "^1.0.1",
"vinyl-fs": "^3.0.3",
"vinyl-source-stream": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/chai-as-promised": "^7.1.2",
"@types/from2": "^2.3.0",
"@types/gulp": "^4.0.6",
"@types/minimist": "^1.2.0",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/npm": "^2.0.31",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.6.4",
"from2": "^2.3.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"minimist": "^1.2.0",
"pre-commit": "^1.2.2",
"ts-node": "^8.6.2",
"turbo-gulp": "^0.22.0"
},
"c88": {
"match": [
"build/test/lib/*.{js,mjs}",
"build/test/lib/**/*.{js,mjs}"
]
}
}