-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
45 lines (45 loc) · 927 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
43
44
45
{
"name": "phash",
"version": "0.0.6",
"description": "Bindings for node.js to pHash",
"main": "lib/phash.js",
"repository": {
"type": "git",
"url": "https://github.com/aaronm67/node-phash.git"
},
"devDependencies": {
"node-gyp": "*",
"should": "1.0.0",
"mocha": "1.3.0"
},
"engines": {
"node": ">=0.8.0"
},
"script": {
"preinstall": "node-gyp configure build",
"preuninstall": "node-gyp clean"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "node-gyp configure build && mocha"
},
"keywords": [
"pHash",
"phash",
"libpHash",
"native",
"binding",
"addon"
],
"author": "Aaron Marasco <agm257@mail.missouri.edu>",
"contributors": [
"Aaron Marasco <agm257@mail.missouri.edu>",
"Taeho Kim <xissysnd@gmail.com>",
"Jeremy Dowell <jeremy@codevinsky.com>"
],
"dependencies": {
"nan": "^2.3.3"
}
}