-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "gulp-rollup-each",
"version": "4.0.1",
"description": "Gulp plugin for Rollup. Yet another gulp-rollup plugin that allows to input/output multiple files.",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ko-yelie/gulp-rollup-each.git"
},
"keywords": [
"gulp",
"gulpplugin",
"rollup",
"static-site"
],
"author": "Ko.Yelie",
"license": "MIT",
"bugs": {
"url": "https://github.com/ko-yelie/gulp-rollup-each/issues"
},
"homepage": "https://github.com/ko-yelie/gulp-rollup-each#readme",
"scripts": {
"lint": "eslint lib",
"test": "npm run lint && jest && npm run test --prefix examples"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^28.1.0"
},
"dependencies": {
"plugin-error": "^1.0.1",
"rollup": "^2.72.0",
"vinyl-sourcemaps-apply": "^0.2.1"
}
}