-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "gulp-dumber-css-module",
"version": "0.1.1",
"description": "Gulp plugin for using CSS Module with dumber bundler",
"main": "index.js",
"files": [
"index.js"
],
"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 | tap-dot",
"coverage": "nyc --reporter=lcov tape test.js | tap-dot"
},
"repository": {
"type": "git",
"url": "https://github.com/dumberjs/gulp-dumber-css-module"
},
"keywords": [
"dumber",
"bundler",
"gulpplugin",
"css-module"
],
"author": "Chunpeng Huo",
"license": "MIT",
"bugs": {
"url": "https://github.com/dumberjs/gulp-dumber-css-module/issues"
},
"homepage": "https://github.com/dumberjs/gulp-dumber-css-module#readme",
"dependencies": {
"fancy-log": "^1.3.3",
"plugin-error": "^1.0.1",
"postcss": "^8.2.4",
"postcss-modules": "^4.0.0",
"vinyl": "^2.2.1",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"eslint": "^7.18.0",
"gulp": "^4.0.2",
"nyc": "^15.1.0",
"standard-changelog": "^2.0.27",
"stream-array": "^1.1.2",
"stream-assert": "^2.0.3",
"tap-dot": "^2.0.0",
"tape": "^5.1.1"
}
}