-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
93 lines (93 loc) · 2.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"author": "Leonhardt Wille <[email protected]>",
"name": "gphoto2",
"description": "Node.js wrapper for libgphoto2",
"version": "0.3.2",
"homepage": "https://github.com/lwille/node-gphoto2",
"keywords": [
"photography",
"dslr",
"gphoto2"
],
"repository": {
"type": "git",
"url": "https://github.com/lwille/node-gphoto2.git"
},
"os": [
"darwin",
"linux"
],
"main": "index.js",
"dependencies": {
"nan": "^2.14.0"
},
"devDependencies": {
"async": "^2.6.1",
"coffeescript": "^2.3.2",
"express": "^4.16.4",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"pug": "^3.0.1",
"should": "^13.2.3",
"sinon": "^7.1.1",
"superagent": "^4.0.0",
"underscore": "^1.9.1"
},
"pre-commit": [
"cpplint"
],
"scripts": {
"cpplint": "util/cpplint.sh",
"prepare": "npm run cpplint",
"preinstall": "((which pkg-config && pkg-config libgphoto2) || (which dpkg && (dpkg -s libgphoto2-dev || dpkg -s libgphoto2-6-dev)) || (which brew && brew list libgphoto2) || (echo 'ERROR: libgphoto2 seems not to be installed.' 1>&2; exit 1))",
"install": "node-gyp rebuild",
"test": "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"
},
{
"name": "Tim Hunt",
"url": "https://github.com/mitnuh"
},
{
"name": "Sijawusz Pur Rahnama",
"email": "[email protected]",
"url": "https://github.com/sija"
},
{
"name": "Philipp Trenz",
"email": "[email protected]",
"url": "https://github.com/philipptrenz"
}
]
}