forked from lwille/node-gphoto2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.87 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"author": "Leonhardt Wille <[email protected]>",
"name": "gphoto2",
"description": "Node.js wrapper for libgphoto2",
"version": "0.1.7",
"homepage": "https://github.com/lwille/node-gphoto2",
"repository": {
"type": "git",
"url": "git://github.com/lwille/node-gphoto2.git"
},
"engines": {
"node": "~0.10.0"
},
"os" : [ "darwin", "linux" ],
"main": "build/Release/gphoto2.node",
"dependencies": {},
"devDependencies": {
"async": "^0.2.10",
"coffee-script": "^1.7.1",
"express": "^3.1.2",
"jade": "^0.28.2",
"mocha": "^1.9.0",
"pre-commit": "^0.0.8",
"should": "^1.2.2",
"sinon": "^1.6.0",
"superagent": "^0.14.9",
"underscore": "^1.4.4"
},
"pre-commit": [
"cpplint"
],
"scripts": {
"cpplint": "util/cpplint.sh",
"prepublish": "npm run cpplint",
"preinstall": "((which pkg-config && pkg-config libgphoto2) || (which dpkg && dpkg -s libgphoto2-2-dev) || (which brew && brew list libgphoto2) || (echo 'ERROR: libgphoto2 seems not to be installed.' 1>&2; exit 1)) && node-gyp rebuild",
"test": "node_modules/mocha/bin/mocha"
},
"license": "MIT",
"contributors": [
{
"name": "Leonhardt Wille",
"email": "[email protected]",
"url": "https://github.com/lwille"
},
{
"name": "Aaron Israel",
"email": "[email protected]",
"url": "https://github.com/a0n"
},
{
"name": "Luigi Pinca",
"email": "[email protected]",
"url": "https://github.com/lpinca"
},
{
"name": "Michael Kötter",
"email": "[email protected]",
"url": "https://github.com/michaelkoetter"
},
{
"name": "david noelte",
"email": "[email protected]",
"url": "https://github.com/marvin"
},
{
"name": "Brian White",
"email": "[email protected]",
"url": "https://github.com/mscdex"
}
]
}