-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 890 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 890 Bytes
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
{
"name": "chalklet",
"version": "1.0.0",
"description": "Generate coloured ASCII Art from text, thanks to chalk and figlet",
"main": "chalklet.js",
"scripts": {
"examples": "node examples.js",
"test": "nyc mocha && nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkcwd/chalklet.git"
},
"keywords": [
"color",
"ascii",
"figlet",
"chalk"
],
"author": "Dave Clark <dave@dkcwd.com.au> (https://dkcwd.com.au)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dkcwd/chalklet/issues"
},
"homepage": "https://github.com/dkcwd/chalklet#readme",
"dependencies": {
"chalk": "^2.4.1",
"figlet": "^1.2.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0"
}
}