-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "ndpack-image",
"version": "3.0.0",
"description": "Package an image into a requireable module",
"main": "unpack.js",
"bin": {
"ndpack-image": "bin/ndpack-image.js"
},
"directories": {
"example": "example"
},
"dependencies": {
"ndarray": "^1.0.14",
"pngparse-sync": "^1.0.1",
"save-pixels": "^1.0.0",
"get-pixels": "^3.0.1",
"concat-stream": "^1.4.5"
},
"devDependencies": {
"ndarray-imshow": "^1.0.0",
"beefy": "^1.1.0",
"browserify": "^4.1.5"
},
"scripts": {
"test": "node ./bin/ndpack-image.js example/baboon.png > example/baboon.js && node example/example.js",
"test-browser": "node ./bin/ndpack-image.js example/baboon.png > example/baboon.js && beefy --open example/example.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mikolalysenko/ndpack-image.git"
},
"keywords": [
"ndarray",
"image",
"pack"
],
"author": "Mikola Lysenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikolalysenko/ndpack-image/issues"
},
"homepage": "https://github.com/mikolalysenko/ndpack-image"
}