forked from arusanov/avatar-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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": "avatar-generator",
"version": "1.0.8",
"main": "lib/avatar-generator.js",
"description": "8bit avatar generator. Inspired by https://github.com/matveyco/8biticon",
"homepage": "https://github.com/arusanov/avatar-generator",
"bugs": "https://github.com/arusanov/avatar-generator/issues",
"author": {
"name": "Alex R"
},
"repository": {
"type": "git",
"url": "https://github.com/arusanov/avatar-generator"
},
"license": "MIT",
"files": [
"lib",
"img",
"cli.js",
"settings.js"
],
"keywords": [
"avatar",
"8bit",
"old school"
],
"devDependencies": {
"buffer-equal": "0.0.1",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.3.3",
"grunt-contrib-watch": "^0.6.1",
"jshint-stylish": "^0.2.0",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.3.1"
},
"dependencies": {
"connect": "^2.21.1",
"commander": "^2.2.0",
"seed-random": "^2.2.0",
"through": "^2.3.4",
"underscore": "^1.8.2"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"test": "grunt"
},
"bin": {
"avatar-generator": "./cli.js"
},
"preferGlobal": false
}