-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 908 Bytes
/
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
{
"name": "postcss-content-entity",
"version": "0.2.1",
"description": "PostCSS plugin that allows to use html entities inside css content property",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"content",
"html entity"
],
"author": "Andrii Komarnitskyi <[email protected]>",
"license": "MIT",
"repository": "komarnitskyi/postcss-content-entity",
"bugs": {
"url": "https://github.com/komarnitskyi/postcss-content-entity/issues"
},
"homepage": "https://github.com/komarnitskyi/postcss-content-entity",
"dependencies": {
"html-entities": "^1.2.0",
"postcss": "^5.2.6"
},
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-postcss": "^2.0.2",
"jest": "^17.0.2"
},
"scripts": {
"test": "jest && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss/es5",
"env": {
"jest": true
}
}
}