forked from tidev/ioslib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ioslib",
"version": "0.10.5",
"description": "iOS Utility Library",
"keywords": [
"appcelerator",
"ios",
"iphone",
"ipad",
"xcode",
"apple"
],
"author": {
"name": "Appcelerator, Inc.",
"email": "npmjs@appcelerator.com"
},
"maintainers": [
{
"name": "Jeff Haynie",
"email": "jhaynie@appcelerator.com"
},
{
"name": "Chris Barber",
"email": "cbarber@appcelerator.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/appcelerator/ioslib.git"
},
"license": "Apache-2.0",
"main": "./index",
"bugs": {
"url": "https://github.com/appcelerator/ioslib/issues"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"always-tail": "0.2.0",
"async": "1.5.2",
"bplist-parser": "0.1.1",
"mkdirp": "0.5.1",
"node-appc": "0.2.35",
"node-ios-device": "0.8.3"
},
"devDependencies": {
"mocha": "^2.4.5",
"should": "^8.2.2"
},
"scripts": {
"test": "mocha --require test/init --reporter spec --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-xcode": "mocha --require test/init --reporter spec --check-leaks test/test-xcode"
},
"engines": {
"node": ">=0.10"
}
}