forked from komarnitskyi/postcss-content-entity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.39 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
{
"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 <ticapac@gmail.com>",
"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": "^2.3.0"
},
"peerDependencies": {
"postcss": "^8.4.0"
},
"devDependencies": {
"@logux/eslint-config": "^47.2.0",
"eslint": "^8.18.0",
"eslint-config-postcss": "^4.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-prettierx": "^0.18.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"jest": "^28.1.0",
"postcss": "^8.4.0"
},
"scripts": {
"test": "jest && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss",
"env": {
"jest": true
}
}
}