mirror of
https://github.com/marcogll/passkit-generator.git
synced 2026-03-15 17:25:21 +00:00
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "passkit-generator",
|
|
"version": "3.1.9",
|
|
"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)"
|
|
]
|
|
}
|