-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "eslint-plugin-typescript-enum",
"version": "2.1.0",
"description": "ESLint rules for TypeScript enums.",
"main": "dist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shian15810/eslint-plugin-typescript-enum.git"
},
"keywords": [
"typescript",
"eslint",
"typescript-eslint",
"enum",
"typescript-enum",
"plugin",
"eslint-plugin",
"rules",
"eslint-rules"
],
"author": "Chuah Chee Shian <shian15810@gmail.com> (https://github.com/shian15810)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shian15810/eslint-plugin-typescript-enum/issues"
},
"homepage": "https://github.com/shian15810/eslint-plugin-typescript-enum#readme",
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.3.0"
},
"devDependencies": {
"@types/node": "^16.11.6",
"rimraf": "^3.0.2",
"typesafeconfig": "^4.3.0",
"typescript": "^4.4.4"
}
}