-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.59 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
{
"name": "postcss-html-loader",
"version": "1.1.0",
"description": "PostCSS loader for loading and processing styles from within HTML templates.",
"main": "src/index.js",
"scripts": {
"release": "standard-version",
"test": "xo && nyc ava",
"test:integrations": "ava test/integrations",
"test:travis": "xo && nyc ava && nyc report --reporter=text-lcov | coveralls"
},
"xo": {
"space": true,
"rules": {
"eol-last": 0
},
"ignores": [
"test/integrations/**/*"
]
},
"ava": {
"files": [
"test/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/PolymerX/postcss-html-loader.git"
},
"bugs": {
"url": "https://github.com/PolymerX/postcss-html-loader/issues"
},
"homepage": "https://github.com/PolymerX/postcss-html-loader#readme",
"author": "LasaleFamine <info@godev.space>",
"license": "MIT",
"engines": {
"node": ">= 6"
},
"files": [
"src"
],
"keywords": [
"css",
"postcss",
"postcss-runner",
"webpack",
"webpack-loader",
"polymer",
"polymer-loader",
"polymer-loader-postcss",
"postcss-html-loader",
"postcss-polymer-loader"
],
"dependencies": {
"fs-extra": "4.0.3",
"loader-utils": "1.1.0",
"parse5": "4.0.0",
"postcss": "6.0.17",
"postcss-load-config": "1.2.0"
},
"devDependencies": {
"autoprefixer": "7.2.6",
"ava": "0.25.0",
"coveralls": "2.13.2",
"execa": "0.9.0",
"nyc": "11.4.1",
"standard-version": "4.3.0",
"text-loader": "0.0.1",
"webpack": "3.11.0",
"xo": "0.18.2"
}
}