-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.59 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
{
"name": "eslint-cook",
"version": "0.0.9",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node src/index.ts -m typescript react import effector prettier",
"build": "rimraf dist && tsc",
"prod": "node index.js -m typescript react",
"prepare-package": "npm run build && npm run docs",
"help": "ts-node src/index.ts --help",
"docs": "ts-node docs/index.ts",
"prepublishOnly": "npm run prepare-package"
},
"keywords": [
"eslint",
"eslint-plugin"
],
"author": "acacode",
"license": "ISC",
"engines": {
"node": ">=14"
},
"simple-git-hooks": {
"pre-commit": "npm run prepare-package && git add -A"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"dist"
],
"bin": {
"eslint-cook": "index.js",
"cook-eslint": "index.js"
},
"peerDependencies": {
"eslint": "^7.0.0"
},
"dependencies": {
"commander": "^8.2.0",
"cosmiconfig": "^7.0.1",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"nanocolors": "^0.2.12"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.3",
"@types/lodash": "^4.14.173",
"@types/node": "^16.9.6",
"eta": "^1.12.3",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.6.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"bugs": {
"url": "https://github.com/acacode/eslint-cook/issues"
},
"homepage": "https://github.com/acacode/eslint-cook",
"repository": {
"type": "git",
"url": "git://github.com/acacode/eslint-cook"
}
}