-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.25 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
{
"name": "@modernpoacher/deps",
"version": "2.2.14",
"description": "Update NPM package dependencies from the command line",
"keywords": [
"deps",
"dependencies",
"devDependencies",
"optionalDependencies",
"bundleDependencies",
"peerDependencies"
],
"main": "./index.mjs",
"type": "module",
"author": {
"name": "Jonathan Perry for Modern Poacher Limited",
"email": "[email protected]",
"url": "https://modernpoacher.com"
},
"license": "ISC",
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "git://github.com/modernpoacher/deps.git"
},
"homepage": "https://github.com/modernpoacher/deps",
"bugs": {
"url": "https://github.com/modernpoacher/deps/issues"
},
"scripts": {
"deps": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning DEBUG_COLORS=yes NODE_ENV=production node bin/deps.mjs",
"deps-deps": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning DEBUG_COLORS=yes NODE_ENV=production node bin/deps/deps.mjs",
"deps-execute": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning DEBUG_COLORS=yes NODE_ENV=production node bin/deps/execute.mjs",
"deps-head": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning DEBUG_COLORS=yes NODE_ENV=production node bin/deps/head.mjs",
"deps-install": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning DEBUG_COLORS=yes NODE_ENV=production node bin/deps/install.mjs",
"deps-push": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning DEBUG_COLORS=yes NODE_ENV=production node bin/deps/push.mjs",
"deps-wipe": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning DEBUG_COLORS=yes NODE_ENV=production node bin/deps/wipe.mjs",
"lint": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning eslint . --ext .mjs,.cjs",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"start": "npm run deps",
"test": "cross-env NODE_OPTIONS=--disable-warning=ExperimentalWarning DEBUG_COLORS=yes NODE_ENV=test mocha test --recursive --verbose --color"
},
"bin": {
"deps": "bin/deps.sh",
"deps-deps": "bin/deps/deps.sh",
"deps-execute": "bin/deps/execute.sh",
"deps-head": "bin/deps/head.sh",
"deps-install": "bin/deps/install.sh",
"deps-push": "bin/deps/push.sh",
"deps-wipe": "bin/deps/wipe.sh"
},
"dependencies": {
"commander": "^13.1.0",
"debug": "^4.4.0",
"glob": "^11.0.1",
"strip-ansi": "^7.1.0",
"supports-color": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-env": "^7.26.7",
"@babel/register": "^7.25.9",
"chai": "^5.1.2",
"core-js": "^3.40.0",
"cross-env": "^7.0.3",
"eslint": "8.57.1",
"eslint-config-standard": "^17.1.0",
"husky": "^9.1.7",
"mocha": "^11.1.0"
},
"imports": {
"#deps/bin": "./bin/index.mjs",
"#deps/bin/*": "./bin/*.mjs",
"#deps/bin/common": "./bin/common/index.mjs",
"#deps/src": "./src/index.mjs",
"#deps/src/*": "./src/*.mjs",
"#deps/src/common": "./src/common/index.mjs",
"#deps/src/common/*": "./src/common/*/index.mjs",
"#deps/src/install": "./src/install/index.mjs",
"#where-am-i": "./where-am-i.mjs"
}
}