-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.55 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.55 KB
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
{
"name": "ioslib",
"version": "5.2.0",
"description": "iOS Utility Library",
"keywords": [
"appcelerator",
"ios",
"watchos",
"iphone",
"ipad",
"xcode",
"apple"
],
"author": "TiDev, Inc. <npm@tidev.io>",
"repository": "https://github.com/tidev/ioslib",
"license": "Apache-2.0",
"main": "./index",
"bugs": "https://github.com/tidev/ioslib/issues",
"directories": {
"lib": "./lib"
},
"dependencies": {
"always-tail": "0.2.0",
"async": "^3.2.6",
"bplist-parser": "0.3.2",
"debug": "^4.3.4",
"node-appc": "^1.1.7",
"node-ios-device": "1.13.0"
},
"devDependencies": {
"mocha": "^8.2.0",
"should": "^13.2.3"
},
"scripts": {
"test": "mocha --require test/init --check-leaks test/",
"test-certs": "mocha --require test/init --reporter spec --check-leaks test/test-certs",
"test-device": "mocha --require test/init --reporter spec --check-leaks test/test-device",
"test-env": "mocha --require test/init --reporter spec --check-leaks test/test-env",
"test-ioslib": "mocha --require test/init --reporter spec --check-leaks test/test-ioslib",
"test-provisioning": "mocha --require test/init --reporter spec --check-leaks test/test-provisioning",
"test-simulator": "mocha --require test/init --reporter spec --check-leaks test/test-simulator",
"test-teams": "mocha --require test/init --reporter spec --check-leaks test/test-teams",
"test-xcode": "mocha --require test/init --reporter spec --check-leaks test/test-xcode"
},
"engines": {
"node": ">=18"
}
}