-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.65 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
{
"name": "@moxy/stylelint-config",
"description": "MOXY stylelint configuration to be used across projects",
"version": "10.0.1",
"keywords": [
"stylelint-config",
"stylelintconfig",
"stylelint",
"css",
"lint",
"linter",
"style"
],
"author": "André Cruz <andre@moxy.studio>",
"homepage": "https://github.com/moxystudio/stylelint-config",
"bugs": "https://github.com/moxystudio/stylelint-config/issues",
"repository": "git@github.com:moxystudio/stylelint-config.git",
"license": "MIT",
"main": "index.js",
"files": [
"rules"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"stylelint": ">= 14.0.0"
},
"dependencies": {
"stylelint-declaration-strict-value": "^1.8.0",
"stylelint-order": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@moxy/eslint-config-base": "^13.0.3",
"@moxy/eslint-config-jest": "^13.0.3",
"@moxy/jest-config-base": "^6.0.0",
"eslint": "^7.0.0",
"glob": "^7.1.2",
"husky": "^4.0.10",
"jest": "^26.0.0",
"lint-staged": "^11.0.0",
"standard-version": "^9.0.0",
"stylelint": "^14.0.0"
}
}