-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 894 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 894 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
37
38
39
{
"name": "ascii-video",
"version": "0.1.3",
"description": "A tool to create and play sprite animation in the terminal",
"main": "./main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fossage/ASCII-Video"
},
"maintainers": [
{
"name": "fossage",
"email": "jfoss124@gmail.com"
}
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"ascii-video": "./main.js"
},
"author": "Justin Foss",
"contributors": [{ "name": "Xinyi Chen" }, { "name": "Jeremie Zarca" }],
"license": "ISC",
"dependencies": {
"cli-color": "^1.2.0",
"commander": "^2.9.0",
"gm": "^1.23.0",
"image-to-ascii": "^3.0.5",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4",
"log-update": "^1.0.2",
"shelljs": "^0.7.7"
},
"engines": {
"node": ">=6.10.0",
"npm": ">=4.0.5"
}
}