-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 991 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
{
"name": "imagejs",
"version": "0.0.9",
"description": "Image Processor",
"private": false,
"license": "MIT",
"author": {
"name": "Guyon Roche",
"email": "[email protected]",
"url": "https://github.com/guyonroche/imagejs"
},
"repository": {
"type": "git",
"url": "https://github.com/guyonroche/imagejs.git"
},
"keywords": [
"pure", "javascript", "image", "bitmap", "jpg", "jpeg", "resize", "rotate", "negative", "crop",
"bilinear", "bicubic", "hermite", "bezier"
],
"dependencies": {
"bluebird": "*",
"jpeg-js": "0.1.1",
"node-png": "0.4.3",
"underscore": "1.4.4"
},
"devDependencies": {
"jasmine-node": "~1.14",
"memorystream": "*"
},
"scripts": {
"test": "jasmine-node spec"
},
"main": "./index.js",
"files": [
"index.js",
"lib",
"LICENSE",
"README.md"
]
}