-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "gulp-dumber",
"version": "3.0.0",
"description": "Gulp plugin for dumber bundler",
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint index.js test.js",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"pretest": "npm run lint",
"test": "tape test.js",
"coverage": "nyc --reporter=lcov tape test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dumberjs/gulp-dumber"
},
"keywords": [
"dumber",
"bundler",
"gulpplugin"
],
"author": "Chunpeng Huo",
"license": "MIT",
"bugs": {
"url": "https://github.com/dumberjs/gulp-dumber/issues"
},
"homepage": "https://github.com/dumberjs/gulp-dumber#readme",
"dependencies": {
"concat-with-sourcemaps": "^1.1.0",
"dumber": "^3.0.0",
"fancy-log": "^2.0.0",
"plugin-error": "^1.0.1",
"vinyl": "^2.2.1"
},
"devDependencies": {
"eslint": "^8.15.0",
"nyc": "^15.1.0",
"standard-changelog": "^2.0.27",
"stream-assert": "^2.0.3",
"tape": "^5.5.3"
}
}