-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 1 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": "vips-ffi",
"description": "binding for the libvips image processing library",
"version": "0.2.0",
"author": "John Cupitt <[email protected]>",
"homepage": "https://github.com/jcupitt/node-vips",
"contributors": [],
"main": "lib/index.js",
"scripts": {
"test": "semistandard && nyc --reporter=lcov --branches=99 mocha --slow=5000 --timeout=60000 ./test/unit/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jcupitt/node-vips"
},
"keywords": [
"ffi",
"libvips",
"vips"
],
"bugs": {
"url": "https://github.com/jcupitt/node-vips/issues",
"email": "[email protected]"
},
"dependencies": {
"ffi": "^2.2.0",
"ref": "^1.3.0",
"ref-struct": "^1.1.0",
"ref-array": "^1.2.0",
"weak": "^1.0.0"
},
"devDependencies": {
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"semistandard": "^11.0.0"
},
"license": "MIT"
}