-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "eslint-plugin-assorted-rules",
"version": "1.1.7",
"description": "plugin for custom eslint rules",
"main": "./index.js",
"scripts": {
"test": "jest",
"compile": "tsc",
"clean": "rimraf dist",
"build": "npm run clean && npm run compile && node dist/SetupPackage.js",
"publish": "cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polklabs/eslint-plugin-assorted-rules.git"
},
"dependencies": {
"@typescript-eslint/parser": "^5.7.0",
"@typescript-eslint/utils": "^5.7.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"typescript": "^4.5.5",
"jest": "^27.3.1",
"ts-jest": "^27.0.7"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Andrew Polk",
"license": "MIT",
"bugs": {
"url": "https://github.com/polklabs/eslint-plugin-assorted-rules/issues"
},
"homepage": "https://github.com/polklabs/eslint-plugin-assorted-rules#readme"
}