-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "@lint-md/eslint-plugin",
"version": "0.1.0",
"main": "lib/index.js",
"repository": "https://github.com/lint-md/eslint-plugin.git",
"author": "yuzhanglong <[email protected]>",
"license": "MIT",
"scripts": {
"sync-rules": "node lib/rule-generator.js",
"husky:prepare": "husky install",
"commitlint:lint": "commitlint -e ./.git/COMMIT_EDITMSG",
"lint": "eslint --ext .ts --ext .tsx --max-warnings 0 ./src",
"lib:cjs": "tsc -p tsconfig.json --target ESNext --module commonjs --outDir lib",
"build": "npm run clean && run-p lib:*",
"clean": "rimraf lib esm"
},
"dependencies": {
"@lint-md/core": "^0.2.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-plugin-import": "latest",
"husky": "^5.1.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"peerDependencies": {
"eslint": "^7.0.0"
},
"files": [
"lib",
"src"
]
}