-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
{
"name": "lint-recently",
"version": "0.2.2",
"description": "lint recently git commited files",
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"bin": "./dist/bin.mjs",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"files": [
"/dist"
],
"repository": "[email protected]:wyntau/lint-recently.git",
"author": "wyntau <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/commander": "^2.12.2",
"@types/debug": "^4.1.7",
"@types/node": "^16.10.3",
"@types/supports-color": "^8.1.1",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.1",
"lint-staged": "14.x",
"prettier": "^3.0.0",
"type-fest": "^4.9.0",
"typescript": "^5.3.3"
},
"dependencies": {
"ajv": "^8.6.3",
"commander": "^11.0.0",
"cosmiconfig": "^9.0.0",
"dayjs": "^1.10.7",
"debug": "^4.3.2",
"execa": "^8.0.1",
"p-map": "6.x",
"supports-color": "^9.2.3",
"tslib": "^2.6.2"
},
"peerDependencies": {
"lint-staged": "^13.0.3"
},
"scripts": {
"eslint": "DEBUG=eslint:cli-engine eslint .",
"eslint-fix": "DEBUG=eslint:cli-engine eslint --fix .",
"prepare": "husky install || exit 0",
"build": "tsc && cp src/schema.json dist",
"watch": "tsc -w",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"lint": "npm run eslint",
"test": "npm run prepublishOnly && npx . --debug"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}