forked from arcanis/clipanion
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
{
"name": "@blitz/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": "lib/advanced/index",
"license": "MIT",
"sideEffects": false,
"repository": {
"url": "https://github.com/arcanis/clipanion",
"type": "git"
},
"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": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"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.1.2"
},
"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"
},
"files": [
"lib"
]
}