forked from tinovyatkin/pass-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.55 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
{
"name": "@nwpr/pass-js",
"description": "Apple Wallet Pass generating and pushing updates from Node.js",
"author": "walther IT <[email protected]>",
"version": "7.0.2",
"type": "module",
"homepage": "https://github.com/nwpr/pass-js",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nwpr/pass-js/blob/master/MIT-LICENSE"
}
],
"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",
"exports": "./dist/index.js",
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@repobuddy/jest": "^3.4.0",
"@types/buffer-crc32": "^0.2.2",
"@types/color-name": "^1.1.1",
"@types/jest": "^29.5.5",
"@types/node": "^12.20.29",
"@types/node-forge": "^1.3.6",
"@types/yauzl": "^2.10.1",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@typescript-eslint/typescript-estree": "^6.7.4",
"babel-jest": "^29.7.0",
"env-app-yaml": "^1.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-extended": "^4.0.1",
"jest-junit": "^16.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"scripts": {
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" npx 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/nwpr/pass-js.git"
},
"bugs": {
"url": "https://github.com/nwpr/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-fetch": "^3.3.2",
"node-forge": "^1.3.1",
"strip-json-comments": "^3.1.1",
"yauzl": "^2.10.0"
}
}