forked from IDuxFE/weekly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 875 Bytes
/
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
{
"name": "weekly",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint-md": "lint-md article/**/*.{md,markdown} && lint-md translation/**/*.{md,markdown}",
"fix-md": "lint-md article/**/*.{md,markdown} --fix && lint-md translation/**/*.{md,markdown} --fix",
"precommit": "lint-staged",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://github.jparrowsec.cn.cnpmjs.org/IduxFE/weekly.git"
},
"keywords": [
"weekly"
],
"author": "Joe",
"license": "ISC",
"dependencies": {
"husky": "^7.0.2",
"lint-md-cli": "^0.1.2"
},
"lint-staged": {
"article/**/*.{md,markdown}": [
"lint-md"
]
},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"lint-staged": "^11.1.2"
}
}