forked from arcanis/clipanion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.14 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
{
"name": "clipanion",
"description": "Type-safe CLI library / framework with no runtime dependencies",
"homepage": "https://mael.dev/clipanion/",
"keywords": [
"cli",
"typescript",
"parser",
"parsing",
"argument",
"args",
"option",
"command"
],
"version": "3.2.0-rc.14",
"main": "sources/advanced/index.ts",
"license": "MIT",
"sideEffects": false,
"repository": {
"url": "https://github.com/arcanis/clipanion",
"type": "git"
},
"workspaces": [
"website"
],
"dependencies": {
"typanion": "^3.8.0"
},
"peerDependencies": {
"typanion": "*"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/lodash": "^4.14.179",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@yarnpkg/core": "^2.3.1",
"@yarnpkg/eslint-config": "yarnpkg/berry#workspace=@yarnpkg/eslint-config",
"@yarnpkg/fslib": "^2.3.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.16.0",
"eslint-plugin-arca": "^0.10.0",
"eslint-plugin-react": "^7.21.5",
"get-stream": "^5.1.0",
"lodash": "^4.17.21",
"mocha": "^8.0.1",
"rollup": "^2.16.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-multi-input": "^1.3.1",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"typescript": "^4.8.4"
},
"scripts": {
"prepack": "rm -rf lib && rollup -c",
"postpack": "rm -rf lib",
"test": "FORCE_COLOR=1 mocha --require ts-node/register --extension ts tests/specs",
"lint": "eslint --max-warnings 0 .",
"demo": "node --require ts-node/register demos/advanced.ts"
},
"publishConfig": {
"main": "lib/advanced/index",
"exports": {
".": {
"types": "./lib/advanced/index.d.ts",
"require": "./lib/advanced/index.js",
"import": "./lib/advanced/index.mjs"
},
"./package.json": "./package.json"
}
},
"files": [
"lib"
],
"packageManager": "[email protected]"
}