-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
99 lines (99 loc) · 2.26 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"author": {
"name": "Sergi Alvarez"
},
"bin": {
"applesign": "bin/applesign.js"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"semi": "semistandard",
"indent": "semistandard --fix bin/*.js lib/*.js *.js",
"unzip-lzfse": "git clone https://github.com/sskaje/unzip-lzfse ; cd unzip-lzfse ; chmod +x unix/configure ; LZFSE_PATH=/usr/local make -f unix/Makefile CF='-DUSE_LZFSE=1 -c -O3 -Wall -DBSD -I. -Ibzip2 -DUNIX' LF2=-llzfse all",
"test": "mocha",
"dist": "./dist.sh",
"dist-all": "./dist.sh macos linux freebsd alpine win"
},
"devDependencies": {
"npm": "^10.0.0",
"pkg": "5.6.0",
"semistandard": "^17.0.0"
},
"dependencies": {
"colors": "1.4.0",
"fatmacho": "0.1.2",
"fs-extra": "^10.1.0",
"fs-walk": "github:trufae/fs-walk#patch-1",
"macho": "^1.4.0",
"macho-entitlements": "^0.2.3",
"macho-is-encrypted": "^0.1.2",
"minimist": "^1.2.6",
"mocha": "9.2.2",
"plist": "github:TooTallNate/plist.js#e17373ef96510a606b62553bd28845842133ba12",
"rimraf": "^3.0.2",
"simple-plist": "^1.3.1",
"uniq": "1.0.1",
"uuid": "8.2.0",
"which": "2.0.2"
},
"overrides": {
"plist": "github:TooTallNate/plist.js#e17373ef96510a606b62553bd28845842133ba12"
},
"files": [
"LICENSE",
"lib/appdir.js",
"bin/applesign.js",
"lib/bin.js",
"lib/config.js",
"lib/depsolver.js",
"lib/entitlements.js",
"example.js",
"lib/fchk.js",
"lib/idprov.js",
"index.js",
"lib/info-plist.js",
"test/test.js",
"lib/tools.js",
"package.json",
"README.md",
"dist.sh"
],
"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": "[email protected]"
}
],
"semistandard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"name": "applesign",
"version": "5.0.0"
}