-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
31 lines (31 loc) · 1009 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
{
"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": {
"node-gyp": "^8.0.0",
"plist": "^3.0.2",
"shelljs": "^0.8.3"
},
"scripts": {
"install": "sh install.sh",
"postinstall": "node-gyp rebuild",
"preinstall-win": "preinstall.cmd",
"install-win": "install.cmd && node-gyp rebuild && postinstall.cmd",
"test": "mocha",
"test:native": "node test/test_imobiledevice_call.js",
"compile": "node-gyp rebuild",
"compile-win": "node-gyp rebuild && postinstall.cmd",
"build": "node-gyp build",
"xcode": "node-gyp configure -- -f xcode"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.4.0",
"sinon": "^10.0.0"
}
}