forked from postcss/gulp-postcss
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.03 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.03 KB
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
75
76
77
78
79
80
81
82
{
"name": "gulp-html-postcss",
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true,
"check-coverage": true
},
"version": "7.1.4",
"description": "Process inline CSS in HTML using PostCSS gulp plugin",
"main": "lib/index.js",
"scripts": {
"coveralls": "coveralls < coverage/lcov.info",
"pretest": "eslint lib test",
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/StartPolymer/gulp-html-postcss.git"
},
"keywords": [
"gulpplugin",
"postcss",
"postcss-runner",
"css",
"html",
"vue"
],
"author": "Start Polymer Authors (http://startpolymer.org/AUTHORS.txt)",
"contributors": [
"Andrey Kuzmin <unsoundscapes@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/StartPolymer/gulp-html-postcss/issues"
},
"homepage": "https://github.com/StartPolymer/gulp-html-postcss",
"dependencies": {
"bufferstreams": "^2.0.1",
"plugin-error": "^1.0.1",
"postcss-html": "^0.32.0",
"postcss-jsx": "^0.32.0",
"postcss-less": "^2.0.0",
"postcss-load-config": "^2.0.0",
"postcss-load-options": "^1.2.0",
"postcss-load-plugins": "^2.3.0",
"postcss-markdown": "^0.32.0",
"postcss-sass": "^0.3.2",
"postcss-scss": "^2.0.0",
"postcss-syntax": "^0.32.0",
"sugarss": "^1.0.1",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"peerDependencies": {
"postcss": ">=6.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"from2-array": "0.0.4",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"postcss": "^7.0.1",
"proxyquire": "^2.0.1",
"sinon": "^6.1.4",
"vinyl": "^2.2.0"
}
}