-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 978 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
38
39
40
41
42
43
{
"name": "node-banner",
"version": "1.4.0",
"description": "Easily integrate ASCII flavoured banners to your CLI tool",
"main": "index.js",
"scripts": {
"format:check": "prettier --check *.js",
"format": "prettier --write *.js",
"pretest": "npm run format:check",
"test": "mocha"
},
"files": [
"index.js",
"index.d.ts",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jamesgeorge007/node-banner.git"
},
"keywords": [
"banner",
"nodejs",
"ascii",
"art",
"javascript",
"cli-library"
],
"author": "James George <jamesgeorge998001@gmail.com>",
"license": "GNU GPL V3",
"bugs": {
"url": "https://github.com/jamesgeorge007/node-banner/issues"
},
"homepage": "https://github.com/jamesgeorge007/node-banner#readme",
"devDependencies": {
"mocha": "^6.1.4",
"prettier": "^2.0.5"
},
"dependencies": {
"figlet": "^1.2.3",
"kleur": "^3.0.3"
}
}