-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.38 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
87
{
"name": "ternimal",
"version": "0.0.1-alpha.6",
"description": "Minimal readline interface wrapper for interactive CLIs.",
"keywords": [
"terminal",
"line",
"console",
"output",
"cli",
"command",
"command-line",
"interactive",
"prompt",
"readline",
"input",
"stdin",
"stdout",
"stderr"
],
"homepage": "https://github.com/Arnesfield/ternimal#readme",
"bugs": {
"url": "https://github.com/Arnesfield/ternimal/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arnesfield/ternimal.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 --skipLibCheck\"",
"format": "npm run lint -- --fix && prettier -cw .",
"lint": "eslint . --ext .js,.ts",
"start": "npm run watch -- --environment NODE_ENV:development",
"test": "echo WARNING: SKIPPING TESTS && exit 0",
"test:_": "npm run all -- mocha npm:check",
"test:watch": "mocha -w",
"watch": "npm run bundle -- -w --no-watch.clearScreen"
},
"dependencies": {
"string-width": "^7.1.0"
},
"devDependencies": {
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"chai": "^5.1.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.14.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.1",
"rollup-plugin-output-size": "^1.4.0",
"tslib": "^2.6.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=16"
}
}