-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"name": "figlet",
"version": "1.8.0",
"description": "Creates ASCII Art from text. A full implementation of the FIGfont spec.",
"keywords": [
"figlet",
"ascii",
"art",
"banner",
"ansi"
],
"bin": "./bin/index.js",
"repository": {
"type": "git",
"url": "https://github.com/patorjk/figlet.js.git"
},
"bugs": {
"url": "https://github.com/patorjk/figlet.js/issues"
},
"author": {
"name": "Patrick Gillespie",
"email": "[email protected]",
"url": "http://patorjk.com/"
},
"license": "MIT",
"main": "./lib/node-figlet.js",
"browser": "./lib/figlet.js",
"devDependencies": {
"async": "~3.2.4",
"grunt": "^1.6.1",
"grunt-contrib-clean": "~2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "~5.0.0",
"grunt-contrib-uglify": "^5.2.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "2.8.7"
},
"scripts": {
"test": "grunt test",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">= 0.4.0"
}
}