-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 1.85 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
{
"name": "lint-filter",
"version": "1.7.3",
"description": "Lint touched code stricter",
"main": "./lib",
"bin": "./lint-filter.js",
"scripts": {
"prepack": "npm run build",
"build": "tsc",
"test": "jest",
"integration-test": "bash integration-test",
"lint": "eslint --cache --ext ts,tsx,js,jsx .",
"lint:errors": "eslint --cache --quiet --ext ts,tsx,js,jsx .",
"format": "eslint --cache --quiet --fix --ext ts,tsx,js,jsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/relekang/lint-filter.git"
},
"keywords": [
"lint"
],
"author": "Rolf Erik Lekang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/relekang/lint-filter/issues"
},
"homepage": "https://github.com/relekang/lint-filter#readme",
"ava": {
"files": [
"test/formatters/*.js",
"test/utils/*.js",
"test/*.js"
],
"babel": true,
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"nyc": {
"include": [
"src/**"
],
"exclude": [
"test/**"
]
},
"dependencies": {
"chalk": "^4.1.2",
"checkstyle-formatter": "^1.1.0",
"get-stdin": "^8.0.0",
"in-range": "^2.0.0",
"lodash": "^4.17.14",
"xml2js": "^0.4.23",
"yargs": "^17.3.1"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/chalk": "^2.2.0",
"@types/checkstyle-formatter": "^1.0.0",
"@types/in-range": "^2.0.1",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.13",
"@types/sinon": "^10.0.9",
"@types/xml2js": "^0.4.9",
"eslint": "^8.8.0",
"eslint-config-relekang": "^2.1.10",
"jest": "^27.4.7",
"standard-version": "^9.3.2",
"strip-ansi": "^6.0.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}