-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "vinyl-rollup",
"version": "0.8.0",
"description": "A wrapper for rollup that produces a stream of Vinyl objects.",
"scripts": {
"release": "standard-version --sign",
"pretest": "cfware-lint .",
"tests-only": "c8 -r none node test/test.js | tap-yaml-summary",
"test": "npm run -s tests-only",
"posttest": "c8 report"
},
"engines": {
"node": ">=13.3.0"
},
"author": "Corey Farrell",
"license": "MIT",
"type": "module",
"main": "./index.js",
"keywords": [
"gulp",
"gulpplugin",
"vinyl",
"rollup",
"source maps",
"sourcemaps"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/vinyl-rollup.git"
},
"bugs": {
"url": "https://github.com/cfware/vinyl-rollup/issues"
},
"homepage": "https://github.com/cfware/vinyl-rollup#readme",
"dependencies": {
"merge2": "^1.2.4",
"rollup": "^2.0.0",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@cfware/lint": "^1.0.1",
"babel-plugin-bare-import-rewrite": "^2.0.0",
"c8": "^7.0.0",
"concat-stream": "^2.0.0",
"gulp-sourcemaps": "^2.6.5",
"libtap": "^0.3.0",
"rollup-plugin-babel": "^4.3.3",
"standard-version": "^8.0.0",
"tap-yaml-summary": "^0.1.0"
}
}