-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "node-ios-device",
"version": "3.2.1",
"description": "Simple library for detecting and installing apps on iOS devices",
"main": "./src/index",
"gypfile": true,
"author": "TiDev, Inc. <[email protected]>",
"maintainers": [
"Chris Barber <[email protected]>"
],
"license": "Apache-2.0",
"keywords": [
"ios",
"iphone",
"ipad",
"install",
"mobiledevice",
"mobile",
"device",
"devices"
],
"bin": "./bin/node-ios-device",
"scripts": {
"install": "node -e \"process.platform === 'darwin' && require('node-gyp-build/bin.js')\"",
"prepublishOnly": "npm run prebuild && npm run prebuild-arm64",
"prebuild": "prebuildify --napi=true --strip --electron-compat",
"prebuild-arm64": "prebuildify --napi=true --strip --arch=arm64",
"build": "node-gyp -j 16 build",
"build-debug": "node-gyp -j 16 build --debug",
"clean": "node-gyp clean",
"rebuild": "node-gyp -j 16 rebuild",
"rebuild-debug": "node-gyp -j 16 rebuild --debug",
"test": "mocha -r chai test/**/test-*.js"
},
"dependencies": {
"cli-kit": "^1.15.0",
"napi-macros": "^2.0.0",
"node-gyp-build": "^4.3.0",
"snooplogg": "^3.0.2"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^9.2.2",
"prebuildify": "^5.0.0"
},
"homepage": "https://github.com/tidev/node-ios-device",
"bugs": "https://github.com/tidev/node-ios-device/issues",
"repository": {
"type": "git",
"url": "git://github.com/tidev/node-ios-device.git"
},
"engines": {
"node": ">=10.13.0"
}
}