-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 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
48
49
50
51
52
53
54
55
56
{
"name": "css-audit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"css-audit": "node ./index.js",
"lint:js": "eslint src",
"format:js": "prettier src/**/*.js *.js --write",
"test": "jest"
},
"author": "WordPress CSS Contributors",
"license": "GPL-2.0-or-later",
"dependencies": {
"@wordpress/eslint-plugin": "9.0.4",
"@wordpress/prettier-config": "1.0.3",
"chalk": "4.1.1",
"cli-table3": "0.6.0",
"cosmiconfig": "7.0.0",
"css-tree": "1.1.3",
"cssom": "0.4.4",
"eslint": "7.26.0",
"fs-extra": "10.0.0",
"glob": "7.1.7",
"minimist": "1.2.6",
"postcss": "8.2.15",
"postcss-values-parser": "5.0.0",
"prettier": "npm:wp-prettier@^2.0.5",
"tinycolor2": "1.4.2"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/esnext",
"plugin:prettier/recommended"
],
"rules": {
"no-console": "off"
},
"env": {
"node": true,
"jest": true
}
},
"jest": {
"modulePathIgnorePatterns": [
"fixtures",
".config.js"
]
},
"prettier": "@wordpress/prettier-config",
"devDependencies": {
"handlebars": "4.7.7",
"jest": "26.6.3",
"twing": "5.0.2"
}
}