-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "passkit-generator",
"version": "3.3.1",
"description": "The easiest way to generate custom Apple Wallet passes in Node.js",
"main": "lib/cjs/index.js",
"types": "lib/types/index.d.ts",
"type": "module",
"scripts": {
"build": "rm -rf lib && pnpm tsc -b tsconfig.esm.json tsconfig.cjs.json && pnpm build:dual",
"build:dual": "pnpm tsconfig-to-dual-package tsconfig.esm.json tsconfig.cjs.json",
"build:all": "pnpm build && pnpm build:examples",
"prepublishOnly": "pnpm build && pnpm test",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" pnpm jest -c jest.config.mjs --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.1",
"tslib": "^2.7.0"
},
"engines": {
"node": ">=14.21.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/do-not-zip": "^1.0.2",
"@types/node": "^16.11.26",
"@types/node-forge": "^1.3.11",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^4.4.1",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "^5.7.3"
},
"files": [
"lib/cjs/**/*.+(js*)",
"lib/esm/**/*.+(js*)",
"lib/types/**/*.+(d.ts*)"
],
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js"
}
}
}