This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.63 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "gulp-progressive-css",
"version": "2.1.0",
"description": "Transfrom `<link>` in HTML to progressive CSS loading.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TrigenSoftware/gulp-progressive-css.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/gulp-progressive-css/issues"
},
"main": "lib/index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint --cache 'src/*.js'",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"gulp",
"gulpplugin",
"progressive-css",
"progressive",
"css"
],
"dependencies": {
"detect-indent": "^5.0.0",
"html-minifier": "^3.5.6",
"import-css": "^3.0.0",
"pn": "^1.0.0",
"through2": "^2.0.3",
"vinyl": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"escope": "^3.6.0",
"eslint": "^4.11.0",
"eslint-config-trigen": "^2.3.0",
"rollup": "^0.51.8",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6"
}
}
],
"stage-0"
],
"plugins": [
"add-module-exports",
"transform-runtime"
]
},
"files": [
"lib"
]
}