-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
58 lines (58 loc) · 1.2 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-bem-linter",
"version": "4.0.1",
"description": "A BEM linter for postcss",
"files": [
"index.js",
"lib"
],
"dependencies": {
"minimatch": "^3.1.2",
"postcss-resolve-nested-selector": "^0.1.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.1.0",
"jest": "^24.5.0",
"postcss": "^8.4.21",
"prettier": "^1.13.7"
},
"peerDependencies": {
"postcss": "^8.4.21"
},
"scripts": {
"lint": "eslint lib test index.js",
"start": "jest --watch",
"test": "jest",
"posttest": "yarn run lint"
},
"jest": {
"testRegex": "test/.*\\.js",
"testPathIgnorePatterns": [
"/node_modules/",
"test-util"
],
"testEnvironment": "node"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/postcss/postcss-bem-linter.git"
},
"keywords": [
"css",
"postcss",
"bem",
"lint",
"test"
],
"volta": {
"node": "18.17.1",
"yarn": "1.22.19"
}
}