-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "canvas-dither",
"version": "1.0.1",
"description": "Black and White dithering for the canvas element",
"main": "src/canvas-dither.js",
"scripts": {
"bundle": "browserify src/canvas-dither.js --standalone CanvasDither -o dist/canvas-dither.js",
"uglify": "uglifyjs dist/canvas-dither.js -cm --overwrite -o dist/canvas-dither.js",
"build": "npm run bundle && npm run uglify",
"lint": "eslint --fix src/canvas-dither.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NielsLeenheer/CanvasDither.git"
},
"keywords": [
"dithering",
"dither",
"canvas",
"bw",
"black",
"white",
"1 bit"
],
"author": "Niels Leenheer",
"license": "MIT",
"bugs": {
"url": "https://github.com/NielsLeenheer/CanvasDither/issues"
},
"homepage": "https://github.com/NielsLeenheer/CanvasDither#readme",
"devDependencies": {
"browserify": "^16.5.2",
"eslint": "^7.7.0",
"eslint-config-google": "^0.14.0",
"uglify-es": "^3.3.9"
}
}