-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "posthtml-inline-css",
"version": "1.2.3",
"description": "PostHTML CSS Inliner",
"main": "index.js",
"author": "Kirill Maltsev <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "rm -f lib/*.js && babel -d lib/ lib/",
"lint": "eslint *.js lib/*.es6 test/",
"pretest": "npm run lint && npm run compile",
"test": "_mocha --compilers js:babel-core/register --check-leaks",
"prepublish": "npm run compile"
},
"keywords": [
"posthtml",
"posthtml-plugin",
"html",
"css",
"inliner",
"inline",
"postproccessor",
"style"
],
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"object-assign": "^4.0.1",
"postcss": "^5.0.12",
"posthtml-attrs-parser": "^0.1.0",
"posthtml-match-helper": "^1.0.1",
"specificity": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.21",
"babel-eslint": "^6.0.0",
"babel-preset-es2015": "^6.1.18",
"eslint": "^2.13.1",
"expect": "^1.13.0",
"lodash": "^4.0.0",
"mocha": "^3.0.0",
"posthtml": "^0.9.0"
},
"repository": {
"type": "git",
"url": "git://github.com/posthtml/posthtml-inline-css.git"
},
"bugs": {
"url": "https://github.com/posthtml/posthtml-inline-css/issues"
},
"homepage": "https://github.com/posthtml/posthtml-inline-css"
}