-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 866 Bytes
/
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
{
"name": "nesify",
"version": "0.0.1",
"description": "Squishes an image to NES palette limitations",
"main": "index.js",
"bin": {
"nesify": "./cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nes",
"8-bit",
"canvas",
"pixel",
"image"
],
"author": "Keith McKnight",
"license": "ISC",
"dependencies": {
"canvas": "^1.6.2",
"chalk": "^1.1.3",
"color-functions": "^1.1.0",
"ditherjs": "^0.9.1",
"expand-tilde": "^2.0.2",
"lodash": "^4.17.3",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0"
}
}