-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.06 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "eslint-plugin-no-empty-disable",
"author": "Edward Payton",
"version": "1.0.0",
"license": "MIT",
"description": "Disallow `eslint-disable` comments without at least one rule",
"main": "dist/index.js",
"typings": "src/index.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"_mocha": "node -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha",
"test:cov": "nyc mocha src/**/*.test.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"eslint": "eslint src --ext ts",
"eslint:fix": "eslint src --ext \"ts\" --fix",
"prepublish": "npm run build",
"build": "tsc",
"prebuild": "npm run clean",
"clean": "rimraf dist",
"commit": "git-cz"
},
"peerDependencies": {
"eslint": ">=5.4"
},
"devDependencies": {
"@types/eslint": "^7.2.2",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.5",
"@typescript-eslint/parser": "^4.1.1",
"chokidar-cli": "^2.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-tslint": "^3.0.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-unicorn": "^19.0.1",
"mocha": "^8.1.3",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslint": "^5.11.0",
"tslint-clean-code": "^0.2.7",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-sonarts": "^1.7.0",
"typescript": "^3.7.4"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/edwardpayton/eslint-plugin-no-empty-disable.git"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslint-rule",
"typescript"
],
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"**/*.d.ts",
"src/**/*.test.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"text"
],
"sourceMap": true,
"instrument": true
}
}