forked from patorjk/figlet.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "figlet",
"version": "1.2.3",
"description": "Creates ASCII Art from text. A full implementation of the FIGfont spec.",
"keywords": [
"figlet",
"ascii",
"art",
"banner",
"ansi"
],
"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",
"dependencies": {},
"devDependencies": {
"async": "~0.9.0",
"grunt": "^1.0.3",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-nodeunit": "~0.2.0",
"grunt-contrib-uglify": "^4.0.0"
},
"scripts": {
"test": "grunt test"
},
"engines": {
"node": ">= 0.4.0"
}
}