-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.14 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
{
"name": "chalk-stencil",
"version": "1.0.0",
"description": "Tagged template literal for stylish outputs",
"main": "chalk-stencil.js",
"repository": "Meesayen/chalk-stencil",
"bugs": "https://github.com/Meesayen/chalk-stencil/issues/",
"author": "Federico Giovagnoli <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"chalk-stencil.js",
"readme.md",
"LICENSE"
],
"xo": {
"extends": "paprika"
},
"keywords": [
"color",
"colour",
"colors",
"terminal",
"console",
"cli",
"string",
"str",
"template",
"tag",
"literal",
"ansi",
"style",
"styles",
"tty",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
"dependencies": {
"chalk": "^1.1.3"
},
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^2.13.1",
"eslint-config-paprika": "^1.0.0",
"nyc": "^10.3.2",
"sinon": "^2.2.0",
"xo": "^0.18.2"
}
}