-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "@foxy.io/google-pay-decrypt",
"type": "commonjs",
"version": "0.0.0",
"description": "This package allows you to decrypt a token received from Google Pay.",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"prepack": "rimraf dist && run-p \"build:!(docs)\"",
"build:cjs": "tsc --outdir \"dist/cjs\"",
"build:esm": "tsc --project tsconfig.esm.json --outdir \"dist/esm\" && copyfiles --up 1 \"./build/esm/**/*\" \"./dist\"",
"build:types": "tsc --declarationdir \"dist/types\" --declaration --emitdeclarationonly && copyfiles --up 1 \"./src/**/*.d.ts\" \"./dist/types\""
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Foxy/foxy-node-google-pay-decrypt.git"
},
"esModuleInterop": true,
"keywords": [
"google",
"pay"
],
"author": "Foxy.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/Foxy/foxy-node-google-pay-decrypt/issues"
},
"homepage": "https://github.com/Foxy/foxy-node-google-pay-decrypt#readme",
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main"
]
},
"dependencies": {
"ec-key": "^0.0.4"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^20.8.7",
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.7",
"typescript": "^5.2.2"
}
}