This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 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
69
70
71
72
73
74
75
76
77
{
"name": "@modyqyw/stylelint-config",
"version": "1.0.5",
"description": "A Stylelint shareable config for CSS/LESS/SCSS. Supports miniprogram.",
"keywords": [
"stylelint",
"config",
"css",
"less",
"scss",
"miniprogram"
],
"homepage": "https://github.com/MillCloud/stylelint-config#readme",
"bugs": {
"url": "https://github.com/MillCloud/stylelint-config/issues"
},
"license": "MIT",
"author": {
"name": "ModyQyW",
"email": "wurui7@mail3.sysu.edu.cn",
"url": "https://modyqyw.github.io"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:MillCloud/stylelint-config.git"
},
"scripts": {
"check": "ncu",
"release": "np --no-tests --no-release-draft"
},
"dependencies": {
"stylelint-config-twbs-bootstrap": "~2.1.0"
},
"devDependencies": {
"@modyqyw/prettier-config": "~1.1.8",
"babel-eslint": "~10.1.0",
"eslint": "~7.13.0",
"eslint-config-prettier": "~6.15.0",
"eslint-plugin-prettier": "~3.1.4",
"husky": "~4.3.0",
"lint-staged": "~10.5.1",
"np": "~7.0.0",
"npm-check-updates": "~10.2.1",
"prettier": "~2.1.2"
},
"eslintConfig": {
"root": true,
"env": {
"es6": true,
"node": true
},
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
]
},
"prettier": "@modyqyw/prettier-config",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}