-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "@savingsunited/postcss-disable-critical-plugin",
"private": false,
"version": "1.0.6",
"description": "PostCSS plugin for disabling critical CSS extraction on dev environments",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"criticalss"
],
"scripts": {
"test": "jest",
"example": "node example"
},
"author": "Dima Lunkin <[email protected]>",
"license": "GPL-3.0",
"repository": "https://github.com/pcvg/postcss-disable-critical-plugin",
"dependencies": {
"postcss": "^8.4.31"
},
"devDependencies": {
"@logux/eslint-config": "^40.0.3",
"eslint": "^7.8.0",
"eslint-config-postcss": "^4.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.0.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^21.0.0",
"jest": "^26.4.2"
},
"eslintConfig": {
"extends": "eslint-config-postcss"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"testEnvironment": "node"
}
}