forked from tinovyatkin/pass-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.21 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
{
"name": "@destinationstransfers/passkit",
"description": "Apple Wallet Pass generating and pushing updates from Node.js",
"homepage": "https://github.com/destinationstransfers/passkit",
"version": "6.5.2",
"license": "MIT",
"engines": {
"node": ">=10.1"
},
"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.8.1",
"@types/buffer-crc32": "0.2.0",
"@types/color-name": "1.1.1",
"@types/jest": "24.0.18",
"@types/node": "12.7.5",
"@types/node-forge": "0.8.6",
"@types/yauzl": "2.9.1",
"@typescript-eslint/eslint-plugin": "2.2.0",
"@typescript-eslint/parser": "2.2.0",
"env-app-yaml": "1.0.0",
"eslint": "6.4.0",
"jest": "25.0.0",
"jest-extended": "0.11.2",
"jest-junit": "8.0.0",
"ts-jest": "24.1.0",
"typescript": "3.6.3"
},
"scripts": {
"test": "node -r env-app-yaml/config --expose-gc node_modules/jest/bin/jest --detectOpenHandles --notify --logHeapUsage --maxWorkers=1",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --ignore-pattern \"*test*\" --ignore-path .gitignore",
"postversion": "git push origin master --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/destinationstransfers/passkit.git"
},
"bugs": {
"url": "http://github.com/destinationstransfers/passkit/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/destinationstransfers/passkit/blob/master/MIT-LICENSE"
}
],
"directories": {
"lib": "src",
"test": "__tests__"
},
"author": "Tino Vyatkin <tino@vtkn.io>",
"dependencies": {
"buffer-crc32": "0.2.13",
"color-name": "1.1.4",
"do-not-zip": "1.0.0",
"event-iterator": "1.2.0",
"imagesize": "1.0.0",
"node-forge": "0.9.0",
"strip-json-comments": "3.0.1",
"yauzl": "2.10.0"
}
}