-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.37 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
{
"name": "parse-ansi",
"main": "parse-ansi",
"version": "1.0.3",
"description": "🤖 Parse ANSI text into an array of ansi-tags and text-chunks.",
"license": "MIT",
"repository": "F1LT3R/parse-ansi",
"author": {
"name": "F1LT3R",
"email": "[email protected]",
"url": "f1lt3r.io"
},
"scripts": {
"test": "xo && yarn run cover",
"unit": "ava",
"watch": "ava --watch",
"cover": "nyc --reporter=lcov --reporter=html --reporter=text ava *.test.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v",
"precommit": "yarn test"
},
"files": [
"index.js",
"ansi-seqs-to-ansi-tags.js",
"ansi-tags-to-decorator-names.js"
],
"keywords": [
"ansi",
"parse",
"parser",
"escape",
"sequence",
"chalk",
"color",
"open",
"close",
"style",
"character"
],
"dependencies": {
"ansi-regex": "^3.0.0",
"array-uniq": "^1.0.3",
"deepmerge": "^2.1.0",
"strip-ansi": "^4.0.0",
"super-split": "^1.1.0"
},
"devDependencies": {
"ava": "^0.25.0",
"chalk": "^2.3.2",
"coveralls": "^3.0.0",
"git-hooks": "^1.1.10",
"git-pre-commit": "^2.1.3",
"nyc": "^11.6.0",
"xo": "^0.20.3"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"xo": {
"esnext": true,
"semicolon": false,
"globals": [
"__dirname"
],
"rules": {
"no-console": 1,
"space-before-function-paren": 0
}
},
"ava": {
"failFast": true
}
}