forked from alexandercerutti/passkit-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "passkit-generator",
"version": "3.1.11",
"description": "The easiest way to generate custom Apple Wallet passes in Node.js",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:src",
"build:all": "npm run build:src && npm run build:examples",
"build:src": "rimraf lib && npx tsc -p tsconfig.dist.json",
"prepublishOnly": "npm run build && npm run test",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest -c jest.config.cjs --silent"
},
"author": "Alexander Patrick Cerutti",
"license": "MIT",
"repository": "https://github.com/alexandercerutti/passkit-generator",
"bugs": "https://github.com/alexandercerutti/passkit-generator/issues",
"keywords": [
"Apple",
"Passkit",
"Wallet",
"Pass"
],
"dependencies": {
"do-not-zip": "^1.0.0",
"joi": "17.4.2",
"node-forge": "^1.3.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">=14.18.1"
},
"devDependencies": {
"@types/do-not-zip": "^1.0.0",
"@types/node": "^16.11.26",
"@types/node-forge": "^1.0.1",
"jest": "^29.5.0",
"jest-environment-node": "^29.5.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^5.0.4"
},
"files": [
"lib/**/*.+(js|d.ts)!(*.map)"
]
}