-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "gulp-cache",
"version": "1.1.3",
"description": "A cache proxy plugin for Gulp",
"author": "Jacob Gable <[email protected]> (http://jacobgable.com)",
"contributors": [
"Tyler Akins <[email protected]> (https://github.com/fidian)",
"Shinnosuke Watanabe <[email protected]> (https://github.com/shinnn)",
"Dan Green <[email protected]> (https://trigen.pro)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jgable/gulp-cache"
},
"bugs": {
"url": "https://github.com/jgable/gulp-cache/issues"
},
"main": "lib/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "trigen-scripts lint",
"jest": "trigen-scripts jest",
"checkSize": "trigen-scripts checkSize",
"test": "trigen-scripts test",
"start": "trigen-scripts start",
"build": "trigen-scripts build",
"cleanPublish": "trigen-scripts cleanPublish",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"gulpplugin",
"gulp",
"cache"
],
"dependencies": {
"@babel/runtime": "^7.5.5",
"cache-swap": "^0.3.0",
"core-js": "3",
"object.pick": "^1.3.0",
"plugin-error": "^1.0.1",
"through2": "3.0.1",
"vinyl": "^2.2.0"
},
"devDependencies": {
"@trigen/scripts": "2.6.3",
"@trigen/scripts-plugin-babel": "2.6.3",
"@trigen/scripts-plugin-eslint": "2.6.3",
"@trigen/scripts-plugin-jest": "2.6.4",
"@trigen/scripts-plugin-rollup": "2.4.0",
"@trigen/scripts-plugin-size-limit": "2.6.3",
"@trigen/scripts-preset-lib": "2.6.3",
"eslint-plugin-jest": "^22.15.0",
"rollup-plugin-eslint": "^6.0.0",
"rollup-plugin-json": "^4.0.0",
"sinon": "7.4.1"
},
"files": [
"lib"
]
}