-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 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
59
60
61
62
63
64
65
66
67
{
"name": "@namics/stylelint-bem",
"version": "10.1.0",
"description": "A stylelint plugin for the Namics BEM definitions",
"main": "index.js",
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"clean": "npx -y rimraf package-lock.json node_modules",
"lint": "eslint .",
"prepare": "husky",
"prepublishOnly": "npm test && npx -y [email protected]",
"pretest": "npm run lint",
"test": "jest",
"update-dependencies": "npm-check-updates -u --deprecated"
},
"repository": {
"type": "git",
"url": "https://github.com/merkle-open/stylelint-bem.git"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"nesting",
"linter",
"bem"
],
"author": "Merkle Inc.",
"license": "MIT",
"dependencies": {
"css-selector-parser": "2.3.2",
"postcss-resolve-nested-selector": "0.1.6"
},
"peerDependencies": {
"stylelint": ">=14.0.0 <17.0.0"
},
"devDependencies": {
"@merkle-open/eslint-config": "4.0.0",
"eslint": "8.57.1",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-light-runner": "0.6.0",
"jest-preset-stylelint": "7.1.0",
"lint-staged": "15.2.10",
"npm-check-updates": "17.1.4",
"stylelint": "16.10.0"
},
"jest": {
"runner": "jest-light-runner",
"preset": "jest-preset-stylelint",
"setupFiles": [
"./jest.setup.js"
]
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}