-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "@origin-1/eslint-plugin",
"version": "0.16.1",
"description": "Origin₁ ESLint plugin",
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin"
],
"bugs": "https://github.com/origin-1/eslint-plugin/issues",
"license": "ISC",
"author": "Francesco Trotta <[email protected]> (https://github.com/fasttime)",
"files": [
"lib",
"rule-docs"
],
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/origin-1/eslint-plugin.git"
},
"scripts": {
"build": "npm install && gulp",
"coverage": "c8 --reporter=html --reporter=text-summary npm test",
"release": "npm version -m \"Release %s\"",
"test": "mocha --check-leaks test/{**,*/*}/*.js"
},
"devDependencies": {
"@origin-1/eslint-config": "latest",
"@typescript-eslint/parser": "rc-v8",
"c8js": "latest",
"eslint-formatter-compact": "latest",
"eslint-plugin-eslint-plugin": "latest",
"gulp": "latest",
"gulp-eslint-new": "latest",
"mocha": "latest"
},
"peerDependencies": {
"eslint": "^8.44 || 9"
},
"engines": {
"node": ">=18"
}
}