-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
91 lines (91 loc) · 2.37 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
{
"name": "@walletpass/pass-js",
"description": "Apple Wallet Pass generating and pushing updates from Node.js",
"author": "Konstantin Vyatkin <tino@vtkn.io>",
"version": "6.9.7",
"homepage": "https://github.com/walletpass/pass-js",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/walletpass/pass-js/blob/master/MIT-LICENSE"
}
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/walletpass"
},
"engines": {
"node": ">=10.10"
},
"bin": {
"passkit-keys": "./bin/passkit-keys"
},
"files": [
"dist/*.js",
"dist/lib/*.js",
"dist/*.ts",
"dist/lib/*.ts",
"bin/passkit-keys"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"devDependencies": {
"@destinationstransfers/eslint-plugin": "2.9.190",
"@types/buffer-crc32": "0.2.0",
"@types/color-name": "1.1.1",
"@types/jest": "27.4.1",
"@types/node": "12.20.29",
"@types/node-forge": "1.0.1",
"@types/yauzl": "2.9.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@typescript-eslint/typescript-estree": "5.62.0",
"env-app-yaml": "1.0.0",
"eslint": "8.46.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-extended": "2.0.0",
"jest-junit": "13.0.0",
"lint-staged": "12.5.0",
"ts-jest": "27.1.4",
"typescript": "4.4.4"
},
"scripts": {
"test": "node -r env-app-yaml/config --expose-gc node_modules/jest/bin/jest --detectOpenHandles --logHeapUsage --maxWorkers=1",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --ignore-pattern \"*test*\" --ignore-path .gitignore",
"postversion": "git push origin master --follow-tags",
"prepublishOnly": "tsc",
"costs": "npx cost-of-modules --no-install"
},
"keywords": [
"apple",
"wallet",
"pass",
"passkit",
"iOS",
"generating",
"APN"
],
"repository": {
"type": "git",
"url": "https://github.com/walletpass/pass-js.git"
},
"bugs": {
"url": "https://github.com/walletpass/pass-js/issues"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"dependencies": {
"buffer-crc32": "0.2.13",
"color-name": "1.1.4",
"do-not-zip": "1.0.0",
"event-iterator": "2.0.0",
"imagesize": "1.0.0",
"node-forge": "1.3.1",
"strip-json-comments": "4.0.0",
"yauzl": "2.10.0"
}
}