-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.19 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
52
{
"name": "@necrobox/stylelint-rules",
"version": "4.0.0",
"description": "A collection of SCSS rules missing in stylelint-scss",
"author": "Natalia Andreychenko <natandreychenko@gmail.com> (https://github.com/natrey)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/necrobox/stylelint-rules"
},
"main": "src/index.js",
"files": [
"docs/",
"src/"
],
"scripts": {
"lint": "eslint --cache -c .eslintrc.js --ext .js .",
"test": "jest",
"watch": "jest --watch"
},
"dependencies": {
"lodash": "4.17.21",
"postcss-resolve-nested-selector": "0.1.6",
"postcss-selector-parser": "7.1.1"
},
"devDependencies": {
"@necrobox/diamonds": "9.0.2",
"@necrobox/eslint-config": "9.0.0",
"eslint": "7.32.0",
"husky": "3.0.5",
"jest": "29.7.0",
"lint-staged": "10.5.4",
"stylelint": "13.13.1"
},
"peerDependencies": {
"stylelint": "*"
},
"jest": {
"setupFiles": [
"./jest-setup.js"
],
"testRegex": "src/.*/__tests__/.*\\.js$"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix --cache -c .eslintrc.js"
}
}