-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.3 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
68
69
70
71
72
73
74
75
76
77
{
"name": "stylelint-find-rules",
"version": "2.2.0",
"description": "Find stylelint rules that you don't have in your config",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-mixed": "node index.js --config tests/configs/mixed.config.js --test-deprecated",
"base-prettier": "prettier --ignore-path .gitignore",
"base-eslint": "eslint --ignore-path .gitignore --rule 'no-console: 1'",
"format": "npm run base-eslint -- --fix \"**/*.js\" && npm run base-prettier -- --write \"**/*.js\"",
"lint-prettier": "npm run base-prettier -- -l \"**/*.js\"",
"lint-eslint": "npm run base-eslint -- --max-warnings 0 \"**/*.js\"",
"lint": "npm run lint-prettier && npm run lint-eslint",
"test": "jest ./src",
"test-watch": "npm run test -- --watch --notify",
"test-coverage": "npm run test -- --coverage",
"test-ci": "npm run test-coverage"
},
"lint-staged": {
"*.js": [
"npm run base-eslint -- --fix --max-warnings 0",
"npm run base-prettier -- --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bin": {
"stylelint-find-rules": "src/bin/stylelint-find-rules.js"
},
"dependencies": {
"bluebird": "3.7.0",
"chalk": "2.4.2",
"columnify": "1.5.4",
"cosmiconfig": "5.2.1",
"lodash": "4.17.21",
"yargs": "14.0.0"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "6.5.1",
"eslint-config-ai": "1.7.0",
"eslint-config-prettier": "6.4.0",
"eslint-find-rules": "3.4.0",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-lodash": "6.0.0",
"eslint-plugin-promise": "4.2.1",
"husky": "3.0.8",
"jest": "24.9.0",
"lint-staged": "9.4.1",
"prettier": "1.18.2",
"stylelint": "9.9.0",
"stylelint-config-recommended": "2.1.0",
"stylelint-config-standard": "18.2.0"
},
"peerDependencies": {
"stylelint": ">=8.3.0"
},
"engines": {
"node": "^8.12.0 || >=9.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexilyaev/stylelint-find-rules.git"
},
"keywords": [],
"author": "Alex Ilyaev",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexilyaev/stylelint-find-rules/issues"
},
"homepage": "https://github.com/alexilyaev/stylelint-find-rules#readme"
}