-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1005 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1005 Bytes
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-minify-inline",
"description": "Gulp plugin to uglify inline JS and minify inline CSS",
"version": "1.1.0",
"author": {
"name": "Alexander Kuznetsov",
"email": "[email protected]",
"url": "http://kuznetsov.by/"
},
"repository": {
"type": "git",
"url": "https://github.com/shkuznetsov/gulp-minify-inline.git"
},
"homepage": "https://github.com/shkuznetsov/gulp-minify-inline",
"keywords": [
"gulpplugin",
"uglify",
"minify",
"inline",
"js",
"javascript",
"script",
"css",
"style"
],
"main": "./index.js",
"dependencies": {
"cheerio": "^0.22.0",
"plugin-error": "^1.0.1",
"terser": "^3.14.1",
"clean-css": "^4.2.1",
"through2": "^3.0.0"
},
"devDependencies": {
"gulp": "~4.0.0",
"chai": "~4.2.0",
"mocha": "~5.2.0"
},
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">= 0.10"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/shkuznetsov/gulp-minify-inline/issues"
}
}