generated from Arnesfield/template.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.16 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
{
"name": "argstree",
"version": "1.5.5",
"description": "Parse arguments into a tree structure.",
"keywords": [
"args",
"argv",
"parser",
"tree",
"cli",
"command",
"options"
],
"homepage": "https://github.com/Arnesfield/argstree#readme",
"bugs": {
"url": "https://github.com/Arnesfield/argstree/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arnesfield/argstree.git"
},
"license": "MIT",
"author": "Jefferson Rylee <rylee.jeff385@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"all": "concurrently -r --kill-others-on-fail",
"build": "npm run all -- npm:bundle npm:check",
"prebundle": "rimraf lib",
"bundle": "rollup -c rollup.config.ts --configPlugin \"esbuild={target:'esnext'}\"",
"check": "npm run all -- \"npm:lint -- --max-warnings 0\" tsc",
"format": "npm run lint -- --fix && prettier -cw .",
"lint": "eslint .",
"start": "npm run watch -- --environment NODE_ENV:development",
"test": "npm run all -- mocha npm:check",
"test:watch": "mocha -w",
"watch": "npm run bundle -- -w --no-watch.clearScreen"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-typescript": "^12.1.1",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"chai": "^5.1.2",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"rollup": "^4.27.4",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-output-size": "^1.5.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"engines": {
"node": ">=16"
},
"overrides": {
"@rollup/plugin-eslint": {
"eslint": "^9"
}
}
}