-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "@typehut/eslint-plugin",
"version": "0.3.1",
"description": "This is a plugin that puts the ESLint rules I have wanted into one place.",
"engines": {
"node": ">=12"
},
"main": "lib/index.js",
"files": [
"lib",
"package.json",
"LICENSE"
],
"scripts": {
"add-rule": "node scripts/add-rule",
"lint": "eslint lib scripts tests",
"format": "prettier . --write",
"update": "node scripts/update",
"pretest": "npm run -s format && npm run -s lint",
"test": "yarn test-only",
"test-only": "nyc mocha \"tests/lib/**/*.js\" --reporter progress",
"version": "npm run -s update"
},
"peerDependencies": {
"eslint": ">=7.13.0"
},
"dependencies": {
"@babel/types": "^7.14.2",
"array-includes": "^3.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"jsx-ast-utils": "^3.2.0"
},
"devDependencies": {
"@types/node": "^14.17.1",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.10.0",
"eslint-config-eslint": "^6.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-eslint-plugin": "^2.3.0",
"eslint-plugin-jsdoc": "^30.7.13",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"source-map": "^0.7.3",
"typescript": "^4.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typehut/eslint-plugin.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "@typehut",
"license": "MIT",
"bugs": {
"url": "https://github.com/typehut/eslint-plugin/issues"
},
"homepage": "https://github.com/typehut/eslint-plugin#readme",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
}
}