forked from matiassingers/provisioning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "provisioning",
"version": "1.5.0",
"description": "parse .mobileprovision(iOS) and .provisionprofile(OS X) files",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"provisioning": "cli.js",
"mobileprovision": "cli.js",
"provisionprofile": "cli.js"
},
"files": [
"index.js",
"cli.js"
],
"repository": {
"type": "git",
"url": "https://github.com/matiassingers/provisioning"
},
"author": "Matias Singers <[email protected]> (http://mts.io)",
"keywords": [
"ipa",
"ios",
"mac",
"osx",
"provisioning profile",
"mobile provisioning",
"mobileprovision",
"provisionprofile"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/matiassingers/provisioning/issues"
},
"homepage": "https://github.com/matiassingers/provisioning",
"dependencies": {
"cert-downloader": "https://github.com/Icenium/cert-downloader/tarball/e7f5662672108106e5a147133507084fd2f902db",
"simple-plist": "0.0.4"
},
"devDependencies": {
"mocha": "2.2.5",
"proxyquire": "1.5.0"
}
}