-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 KB
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
{
"name": "eslint-plugin-code-complete",
"version": "1.5.0",
"description": "ESLint rules to help write complete, maintainable code with better readability",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./rules": "./dist/rules/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"scripts": {
"pretest": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"build": "rollup -c",
"build:force": "rollup -c || true",
"dev": "tsc --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "find . -name '.DS_Store' -type f -delete"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Arye Lukashevski <arye.lu@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aryelu/eslint-plugin-code-complete.git"
},
"bugs": {
"url": "https://github.com/aryelu/eslint-plugin-code-complete/issues"
},
"homepage": "https://github.com/aryelu/eslint-plugin-code-complete#readme",
"peerDependencies": {
"eslint": ">=9.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.8",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.30.1",
"rollup": "^4.44.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"packageManager": "pnpm@9.6.0",
"dependencies": {
"tslib": "^2.8.1"
}
}