-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.05 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
{
"name": "tinta",
"version": "1.0.1",
"description": "Sane, easy and flexible terminal string styling",
"homepage": "https://github.com/An-dz/tinta",
"bugs": "https://github.com/An-dz/tinta/issues",
"main": "lib/tinta.js",
"directories": {
"test": "tests"
},
"files": [
"lib/*"
],
"dependencies": {},
"devDependencies": {
"ava": "^2.4.0",
"nyc": ">14.1.0",
"eslint": "^6.6.0",
"testdouble": "^3.12.4",
"fast-check": "^1.17.0",
"ava-fast-check": "^1.1.2"
},
"scripts": {
"test": "ava",
"cov": "nyc ava",
"bench": "node benchmark/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/An-dz/tinta.git"
},
"keywords": [
"cli",
"cmd",
"console",
"terminal",
"color",
"colour",
"tty",
"shell",
"xterm",
"ansi",
"escape code",
"escape sequence",
"command-line",
"log",
"logging",
"format",
"formatting"
],
"author": "André Zanghelini 'An_dz'",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
}
}