-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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-turisap",
"version": "0.0.18",
"description": "no-magic-numbers enhanced",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Kirill Shakirov",
"files": [
"dist",
"lib",
"package.json"
],
"main": "./dist/index.js",
"scripts": {
"lint": "eslint . --cache",
"test": "mocha tests --recursive",
"prepare": "husky install",
"release": "npm run build && npm version patch && npm publish",
"build": "cd ts && tsc -b ./tsconfig.json"
},
"dependencies": {
"@typescript-eslint/utils": "^5.32.0",
"requireindex": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/turisap/eslint-plugin"
},
"devDependencies": {
"@types/eslint": "^8.4.5",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"typescript": "^4.7.4"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"license": "ISC"
}