-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 2.27 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
78
79
80
{
"name": "eslint-plugin-diff",
"version": "2.0.3",
"description": "Run ESLint on your changes only",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"diff"
],
"homepage": "https://github.com/paleite/eslint-plugin-diff#readme",
"bugs": {
"url": "https://github.com/paleite/eslint-plugin-diff/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paleite/eslint-plugin-diff.git"
},
"license": "MIT",
"author": "Patrick Eriksson <paleite@users.noreply.github.com> (https://github.com/paleite)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
".github/ISSUE_TEMPLATE/feature_request.md",
"/dist/",
"CODE_OF_CONDUCT.md",
"SECURITY.md"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "tsc --build tsconfig.build.json --clean",
"format": "prettier --write .",
"lint": "eslint --cache --ext .js,.ts --fix .",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"prepublish": "yarn run clean && yarn run build",
"postpublish": "pinst --enable",
"release": "np",
"test": "jest --coverage",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"devDependencies": {
"@paleite/eslint-config": "^1.0.9",
"@paleite/eslint-config-base": "^1.0.9",
"@paleite/eslint-config-typescript": "^1.0.9",
"@paleite/jest-config": "^1.0.9",
"@paleite/prettier-config": "^1.0.9",
"@paleite/tsconfig-node16": "^1.0.9",
"@types/eslint": "^8.4.10",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"np": "^7.7.0",
"pinst": "^3.0.0",
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.0.5",
"tsd": "^0.25.0",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"peerDependencies": {
"eslint": ">=6.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"resolutions": {
"cosmiconfig": "^8.1.3"
}
}