-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 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
{
"name": "eslint-plugin-annotation",
"version": "1.1.6",
"description": "Lint rules to validate and auto-correct annotation-based policies",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronparkdev/eslint-plugin-annotation.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"import",
"relative",
"modules",
"autofix"
],
"author": "Sang Min Park (ronparkdev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronparkdev/eslint-plugin-annotation/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ronparkdev/eslint-plugin-annotation#readme",
"devDependencies": {
"@types/eslint": "^8.21.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lint-staged": "^13.2.0",
"prettier": "2.8.7",
"ts-jest": "^28.0.8",
"typescript": "^5.0.2"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"dependencies": {
"@typescript-eslint/utils": "^5.57.0",
"date-fns": "^3.6.0"
},
"lint-staged": {
"*.ts": "prettier --write"
}
}