-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 874 Bytes
/
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
{
"name": "@cakecatz/ansi-parser",
"version": "1.0.3",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cakecatz/ansi-parser.git"
},
"author": "Ryo Narita <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"chalk": "^4.1.0",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"ansi-regex": "^5.0.0"
},
"description": "Parser for string that include ansi codes.",
"bugs": {
"url": "https://github.com/cakecatz/ansi-parser/issues"
},
"homepage": "https://github.com/cakecatz/ansi-parser#readme",
"files": [
"lib/index.js",
"lib/index.d.ts",
"README.md"
]
}