forked from matiassingers/ipa-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.41 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
56
57
58
59
60
61
62
{
"name": "ipa-metadata",
"version": "1.4.0",
"description": "extract metadata and provisioning information about an .ipa file",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"ipa": "cli.js"
},
"files": [
"index.js",
"cli.js"
],
"repository": {
"type": "git",
"url": "https://github.com/matiassingers/ipa-metadata"
},
"author": "Matias Singers <[email protected]> (http://mts.io)",
"keywords": [
"ipa",
"ios",
"mac",
"osx",
"provisioning profile",
"mobile provisioning",
"mobileprovision",
"plist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/matiassingers/ipa-metadata/issues"
},
"homepage": "https://github.com/matiassingers/ipa-metadata",
"dependencies": {
"async": "1.2.1",
"chalk": "1.0.0",
"cli-table": "0.3.1",
"decompress-zip": "0.2.0",
"entitlements": "1.2.0",
"glob": "5.0.10",
"lodash": "3.9.3",
"meow": "3.1.0",
"provisioning": "1.4.0",
"rimraf": "2.4.0",
"simple-plist": "0.0.4",
"temporary": "0.0.8"
},
"devDependencies": {
"codeclimate-test-reporter": "0.0.4",
"coveralls": "2.11.2",
"istanbul": "0.3.15",
"mocha": "2.2.5",
"mocha-lcov-reporter": "0.0.2",
"proxyquire": "1.5.0"
}
}