-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "termx-markup",
"version": "2.0.2",
"description": "Markup based text formatting for terminal.",
"license": "MIT",
"author": {
"name": "Szymon Bretner (ncpa0cpl)",
"email": "[email protected]"
},
"keywords": [
"markup",
"html",
"xml",
"color",
"ansi",
"terminal",
"cli",
"console",
"format",
"formatting",
"text",
"string"
],
"repository": {
"url": "https://github.com/ncpa0cpl/termx-markup"
},
"main": "./dist/legacy/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"scripts": {
"fix:lint": "eslint --fix .",
"fix:prettier": "prettier -w ./src .",
"test:jest": "jest --coverage",
"test:jest:debug": "DISPLAY_RESULTS=true jest",
"test:lint": "eslint .",
"test:prettier": "prettier -c ./src && prettier -c ./__tests__",
"test:tsc": "tsc --noEmit",
"build": "node ./scripts/build.cjs",
"bench": "NODE_PATH=/usr/local/lib/node_modules node ./benchmarks/run-bench.cjs"
},
"devDependencies": {
"@ncpa0cpl/nodepack": "latest",
"@swc/core": "latest",
"@swc/jest": "latest",
"@types/jest": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"axios": "latest",
"esbuild": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"husky": "latest",
"jest": "latest",
"ncpa0cpl": "ncpa0cpl/git-hook-tasks",
"pr-changelog-gen": "latest",
"prettier": "latest",
"prettier-plugin-jsdoc": "latest",
"strip-ansi": "latest",
"typescript": "latest"
},
"packageManager": "[email protected]"
}