forked from nowsecure/node-applesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.39 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.39 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
65
66
67
68
69
70
71
{
"author": {
"name": "Sergi Alvarez"
},
"bin": {
"applesign": "bin/applesign.js"
},
"engines": {
"node": ">=5.12"
},
"scripts": {
"semi": "semistandard",
"test": "mocha"
},
"devDependencies": {
"semistandard": "11.0.0"
},
"dependencies": {
"colors": "1.1.2",
"fatmacho": "0.1.1",
"fs-extra": "4.0.0",
"fs-walk": "github:trufae/fs-walk#patch-1",
"is-array": "1.0.1",
"macho": "1.2.1",
"macho-entitlements": "0.2.2",
"macho-is-encrypted": "0.1.2",
"minimist": "1.2.0",
"mocha": "3.4.2",
"plist": "github:trufae/plist.js#fix-null",
"rimraf": "2.6.1",
"simple-plist": "github:trufae/node-simple-plist#update",
"uniq": "1.0.1",
"uuid": "3.1.0",
"which": "1.2.14"
},
"description": "API to resign IPA files",
"homepage": "https://www.nowsecure.com",
"repository": {
"type": "git",
"url": "git+https://github.com/nowsecure/node-applesign.git"
},
"keywords": [
"binary",
"iphone",
"codesign",
"ios",
"osx"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "Sergi Alvarez",
"email": "pancake@nowsecure.com"
}
],
"semistandard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"name": "applesign",
"version": "2.3.0"
}