forked from postcss/postcss-bem-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.09 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
{
"name": "postcss-bem-linter",
"version": "3.3.0",
"description": "A BEM linter for postcss",
"files": [
"index.js",
"lib"
],
"dependencies": {
"minimatch": "^3.0.3",
"postcss": "^7.0.14",
"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",
"prettier": "^1.11.1"
},
"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"
]
}