-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "@avenga/stylelint-config",
"version": "3.0.0",
"description": "Avenga's stylelint rules and config",
"author": "Avenga",
"license": "MIT",
"keywords": [
"avenga",
"css",
"scss",
"sass",
"config",
"lint",
"linting",
"linter",
"frontend",
"stylelint",
"stylelint-config"
],
"bugs": {
"url": "https://github.com/avenga/stylelint-config/issues"
},
"homepage": "https://github.com/avenga/stylelint-config#readme",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/avenga/stylelint-config.git"
},
"dependencies": {
"stylelint-config-standard-scss": "3.0.0"
},
"devDependencies": {
"@avenga/eslint-config": "^1.1.0",
"eslint": "^8.9.0",
"husky": "^7.0.4"
},
"peerDependencies": {
"stylelint": "^14.5.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:js": "eslint . --ignore-path .gitignore"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:js"
}
}
}