forked from norman784/libimobiledevice-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 908 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
{
"name": "libimobiledevice",
"version": "0.2.7",
"description": "A cross-platform software protocol library and tools to communicate with iOS® devices natively.",
"main": "lib/libimobiledevice.js",
"repository": "https://github.com/norman784/libimobiledevice-node",
"author": "Norman Paniagua (https://github.com/norman784)",
"license": "MIT",
"dependencies": {
"nan": "^2.14.0",
"node-gyp": "^3.6.2",
"shelljs": "^0.8.3"
},
"scripts": {
"preinstall": "node preinstall.js",
"install": "node install.js",
"preinstall-win": "preinstall.cmd",
"install-win": "install.cmd && node-gyp rebuild && postinstall.cmd",
"test": "node test/test_imobiledevice_call.js",
"compile": "node-gyp rebuild && sh postinstall.sh",
"compile-win": "node-gyp rebuild && postinstall.cmd",
"build": "node-gyp build",
"xcode": "node-gyp configure -- -f xcode"
}
}