-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "postcss-important-shorthand",
"version": "2.0.0",
"description": "PostCSS plugin that allows you to use shorthand for your !important rules",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"important",
"shorthand"
],
"author": {
"name": "Sergey Lysenko",
"email": "soulwish.ls@gmail.com",
"url": "https://soulwish.info"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/soul-wish/postcss-important-shorthand.git"
},
"bugs": {
"url": "https://github.com/soul-wish/postcss-important-shorthand/issues"
},
"homepage": "https://github.com/soul-wish/postcss-important-shorthand",
"dependencies": {
"postcss": "^7.0.17"
},
"devDependencies": {
"@logux/eslint-config": "^28.2.2",
"ava": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-postcss": "^3.0.7",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-import-helpers": "^1.0.1",
"eslint-plugin-jest": "^22.7.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0"
},
"scripts": {
"test": "ava && eslint *.js"
},
"eslintConfig": {
"extends": "eslint-config-postcss",
"overrides": [
{
"files": "test.js",
"rules": {
"node/no-unpublished-require": 0
}
}
]
}
}