-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.2 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
86
87
88
89
90
91
92
{
"name": "gulp-eslint-new",
"version": "2.4.0",
"description": "A gulp plugin to lint code with ESLint 8 and 9.",
"keywords": [
"gulpplugin",
"eslint",
"gulp",
"errors",
"warnings",
"check",
"source",
"code",
"formatter",
"js",
"javascript",
"task",
"lint",
"plugin"
],
"license": "MIT",
"author": "Adametry",
"files": [
"lib"
],
"main": "lib/gulp-eslint-new.js",
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/origin-1/gulp-eslint-new.git"
},
"scripts": {
"build": "npm install && gulp",
"coverage": "gulp test",
"lint": "eslint . --format compact",
"release": "git add CHANGELOG.md && npm version -f",
"test": "mocha --check-leaks test/*.spec.js",
"ts-test": "tsc --project test/tsconfig.json"
},
"dependencies": {
"eslint": "8 || 9",
"fancy-log": "^2.0.0",
"plugin-error": "^2.0.1",
"semver": "^7.6.3",
"ternary-stream": "^3.0.0",
"vinyl-fs": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"@origin-1/eslint-config": "^1.8.0",
"@types/eslint__js": "^8.42.3",
"c8js": "^0.8.0",
"eslint-8.0": "npm:[email protected]",
"eslint-8.21": "npm:[email protected]",
"eslint-8.x": "npm:[email protected]",
"eslint-9.0": "npm:[email protected]",
"eslint-9.x": "npm:[email protected]",
"eslint-config-~shareable": "file:test/config",
"eslint-formatter-~formatter": "file:test/formatter",
"eslint-formatter-compact": "^8.40.0",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^15.14.0",
"gulp": "^5.0.0",
"jiti": "^2.4.2",
"mocha": "^9.2.2",
"resolve": "^1.22.10",
"typescript": "~5.7.3",
"typescript_4.8": "npm:[email protected]",
"typescript_5": "npm:typescript@5",
"vinyl": "^3.0.0"
},
"optionalDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": ">=12"
},
"engines": {
"node": "^12.20 || ^14.13 || >=16"
},
"exports": {
".": "./lib/gulp-eslint-new.js",
"./package.json": "./package.json"
},
"imports": {
"#util": "./lib/util.js"
},
"type": "commonjs",
"types": "lib/gulp-eslint-new.d.ts"
}