-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "eslint-p",
"version": "0.14.0",
"description": "A drop-in replacement for ESLint 9 featuring multithreaded parallel linting.",
"keywords": [
"eslint",
"concurrency",
"multitheading",
"parallel"
],
"license": "ISC",
"files": [
"ESLint License.txt",
"grab",
"lib"
],
"bin": "lib/eslint-p.js",
"repository": {
"type": "git",
"url": "git+https://github.com/origin-1/eslint-p.git"
},
"scripts": {
"build": "npm install && npm run build-no-install",
"build-no-install": "npm run clean && npm run make-grabs && npm run lint && npm run coverage",
"clean": "node dev/clean.js",
"coverage": "node dev/coverage.js",
"lint": "node ./lib/eslint-p.js .",
"lint:fix": "node ./lib/eslint-p.js --fix .",
"make-grabs": "node ./dev/make-grabs.js",
"release": "npm version -f",
"test": "mocha test/*.js",
"version": "git add CHANGELOG.md"
},
"dependencies": {
"eslint": "9.15.0"
},
"devDependencies": {
"@origin-1/eslint-config": "^1.8.0",
"acorn": "^8.14.0",
"c8js": "^0.8.0",
"esprima": "^4.0.1",
"fs-teardown": "^0.3.2",
"globals": "^15.12.0",
"jiti": "^2.4.0",
"mocha": "^10.8.2",
"sinon": "^19.0.2"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"exports": {
"./package.json": "./package.json"
},
"imports": {
"#create-verify-text": "./grab/create-verify-text.js",
"#create-verify-text-with-call-id": "./test/_utils/create-verify-text-with-call-id.js"
},
"type": "module"
}