-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.42 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
93
94
95
96
97
98
{
"name": "npm-cross-link",
"version": "12.0.3",
"author": "Mariusz Nowak <[email protected]> (http://www.medikoo.com/)",
"bin": {
"npm-cross-link": "./bin/npm-cross-link.js",
"npm-cross-link-update-all": "./bin/npm-cross-link-update-all.js"
},
"repository": "medikoo/npm-cross-link",
"dependencies": {
"child-process-ext": "^3.0.2",
"cli-color": "^2.0.4",
"cli-progress-footer": "^2.3.3",
"cli-sprintf-format": "^1.1.1",
"es5-ext": "^0.10.64",
"essentials": "^1.2.0",
"event-emitter": "^0.3.5",
"fs2": "^0.3.12",
"log": "^6.3.1",
"log-node": "^8.0.3",
"memoizee": "^0.4.17",
"minimist": "^1.2.8",
"ncjsm": "^4.3.2",
"node-fetch": "^2.7.0",
"npm": "^6.14.18",
"semver": "^7.6.3",
"tar": "^7.4.3",
"timers-ext": "^0.1.8",
"type": "^2.7.3",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-medikoo": "^5.1.0",
"git-list-updated": "^1.2.1",
"husky": "^4.3.8",
"lint-staged": "^15.2.10",
"prettier-elastic": "^3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"eslintConfig": {
"extends": "medikoo/node",
"root": true,
"overrides": [
{
"files": [
"lib/install-dependencies/index.js",
"lib/install-maintained-package/finalize.js",
"lib/setup-dependencies/index.js",
"lib/setup-dependencies/setup-required-dependencies.js",
"lib/update-all.js"
],
"rules": {
"no-await-in-loop": "off"
}
}
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"overrides": [
{
"files": [
"*.md",
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
},
"scripts": {
"lint": "eslint --ignore-path=.gitignore .",
"lint:updated": "pipe-git-updated --base=main --ext=js -- eslint --ignore-pattern '!*'",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettier-check:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c",
"prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'",
"prettify:updated": "pipe-git-updated --base=main --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier --write"
},
"engines": {
"node": ">=18.0"
},
"license": "ISC"
}