forked from hokla-org/bug-shield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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
{
"version": "1.6.1",
"name": "@hokla/eslint-plugin-custom-rules",
"author": "Ludovic Descateaux <ludovicd@hokla.com>",
"license": "MIT",
"main": "dist/index.js",
"description": "ESLint rules to comply with Hokla's best development practices",
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"@hokla/eslint-plugin-custom-rules": "link:./dist",
"@types/jest": "^27.4.1",
"@typescript-eslint/parser": "^5.15.0",
"@typescript-eslint/utils": "^5.15.0",
"eslint": "^8.11.0",
"eslint-plugin-eslint-plugin": "^5.0.7",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"scripts": {
"build": "tsc && cp lib/index.js dist/",
"lint": "eslint --ext .ts \"src/**/*.+(ts)\"",
"test": "jest"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hokla-org/eslint-plugin-custom-rules.git"
},
"keywords": [
"eslint"
],
"bugs": {
"url": "https://github.com/hokla-org/eslint-plugin-custom-rules/issues"
},
"homepage": "https://github.com/hokla-org/eslint-plugin-custom-rules#readme"
}