-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.03 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": "node-ecpay-aio",
"version": "0.2.3",
"description": "A production-ready ECPay AIO SDK for Node.js with TypeScript support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simenkid/node-ecpay-aio.git"
},
"keywords": [
"ecpay",
"aio"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/simenkid/node-ecpay-aio/issues"
},
"homepage": "https://github.com/simenkid/node-ecpay-aio#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"iconv-lite": "^0.6.3",
"yup": "^0.32.11"
},
"engines": {
"node": ">= 10.24.1"
}
}