forked from crafatar/crafatar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
50
51
52
53
{
"name": "crafatar",
"version": "1.0.0",
"private": true,
"description": "A blazing fast API for Minecraft faces!",
"contributors": [
{
"name": "jomo",
"url": "https://github.com/jomo"
},
{
"name": "Jake",
"url": "https://github.com/Jake0oo0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/crafatar/crafatar"
},
"issues": {
"url": "https://github.com/crafatar/crafatar/issues"
},
"keywords": [
"minecraft",
"avatar"
],
"scripts": {
"postinstall": "cp 'config.example.js' 'config.js'",
"start": "node www.js",
"test": "mocha",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"engines": {
"node": "4.3.0"
},
"dependencies": {
"canvas": "^1.3.10",
"crc": "~3.4.0",
"ejs": "^2.3.4",
"lwip": "~0.0.8",
"mime": "~1.3.4",
"node-df": "crafatar/node-df",
"redis": "~2.4.2",
"request": "~2.69.0",
"toobusy-js": "~0.4.2"
},
"devDependencies": {
"coveralls": "~2.11.6",
"istanbul": "~0.4.2",
"mocha": "~2.4.1",
"mocha-lcov-reporter": "~1.0.0"
}
}