-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "eslint-plugin-goblock-custom-rules",
"version": "1.0.1",
"description": "ESLint plugin to enforce pattern rules in Clean Architecture (goBlockchain)",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript",
"clean-architecture",
"repository-pattern"
],
"repository": {
"type": "git",
"url": "git+https://github.com/goblockchain/eslint-plugin-custom-rules.git"
},
"author": "Victor Aguiar Ribeiro (goBlockchain)",
"bugs": {
"url": "https://github.com/goblockchain/eslint-plugin-custom-rules/issues"
},
"homepage": "https://github.com/goblockchain/eslint-plugin-custom-rules#readme",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"dependencies": {
"@typescript-eslint/utils": "^7.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0"
},
"peerDependencies": {
"eslint": ">=8.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
]
}