-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
42 lines (42 loc) · 974 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
40
41
42
{
"name": "ditherjs",
"description": "Image dithering library",
"version": "0.10.0",
"author": "Daniele Piccone <[email protected]>",
"main": "dist/ditherjs.dist.js",
"homepage": "https://dpiccone.github.io/ditherjs/",
"repository": {
"type": "git",
"url": "[email protected]:dpiccone/ditherjs.git"
},
"scripts": {
"preversion": "webpack -p",
"test": "mocha spec/",
"coverage": "nyc mocha spec/",
"demo:client": "webpack-dev-server --content-base demo.client",
"demo:server": "node demo.server/app.js"
},
"keywords": [
"graphic",
"graphics",
"palette",
"palettes",
"pattern",
"color",
"dithering",
"pixel"
],
"devDependencies": {
"domino": "1.0.25",
"express": "4.14.0",
"mocha": "3.0.2",
"nyc": "8.3.0",
"unexpected": "10.16.0",
"webpack": "1.13.2",
"webpack-dev-server": "1.15.0"
},
"browser": {
"canvas": false
},
"license": "CC-BY-SA-4.0"
}