-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.17 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
{
"name": "handpick",
"description": "Handpick conditional dependencies like a boss",
"version": "7.1.1",
"license": "MIT",
"type": "module",
"keywords":
[
"package",
"manager",
"dependency"
],
"author":
{
"name": "Henry Ruhs",
"url": "https://henryruhs.com"
},
"bugs":
{
"url": "https://github.com/henryruhs/handpick/issues"
},
"repository":
{
"type": "git",
"url": "https://github.com/henryruhs/handpick.git"
},
"engines":
{
"node": ">=14"
},
"dependencies":
{
"commander": "11.0.0",
"semver": "7.5.4"
},
"devDependencies":
{
"@isnotdefined/eslint-config": "9.7.1",
"@types/chai": "4.3.7",
"@types/mocha": "10.0.2",
"@types/node": "20.8.4",
"@types/semver": "7.5.3",
"chai": "4.3.10",
"eslint": "8.51.0",
"mocha": "10.2.0",
"rollup": "4.0.2",
"rollup-plugin-add-shebang": "0.3.1",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-ts": "3.4.5",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"scripts":
{
"build": "rollup --config=rollup.config.js",
"lint": "eslint src tests --ext=.ts",
"fix": "npm run lint -- --fix",
"test": "mocha"
},
"bin":
{
"handpick": "cli.js"
}
}