-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 KB
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
{
"name": "terminal-codes-to-html",
"description": "Convert strings that include terminal color codes to HTML or plain text.",
"license": "MIT",
"version": "0.0.1",
"author": {
"name": "Oliver Steele",
"email": "steele@osteele.com",
"url": "https://code.osteele.com"
},
"keywords": [
"terminal codes",
"terminal colors",
"html formatter"
],
"engines": {
"node": ">=14.17"
},
"bugs": "https://github.com/osteele/terminal-codes-to-html/issues",
"repository": "osteele/terminal-codes-to-html",
"homepage": "https://github.com/osteele/terminal-codes-to-html#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "esbuild --outfile=dist/index.js --platform=node --format=cjs --minify --sourcemap ./src/* && tsc --emitDeclarationOnly --declaration",
"lint": "eslint src --ext ts",
"prepack": "yarn build",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "14.x",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"esbuild": "^0.13.12",
"esbuild-jest": "^0.5.0",
"eslint": "^8.1.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier-eslint-cli": "^5.0.1",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.ts"
],
"transform": {
"^.+\\.tsx?$": "esbuild-jest"
}
}
}