-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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-wipay",
"version": "0.3.5-4",
"description": "This is a node wrapper for the WiPay Caribbean V1 API.",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"prepublish": "tsc",
"scripts": {
"precheck": "yarn test && yarn rebuild",
"test": "jest --json --outputFile=testresults",
"start": "ts-node src/index.ts",
"build": "npx tsc -p .",
"coverage": "jest --coverage",
"rebuild": "rm -rf bin && npm run build",
"clean": "rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matabeitt/node-wipay.git"
},
"keywords": [
"wipay",
"payment",
"processor",
"caribbean"
],
"author": "Matthew Abraham",
"license": "ISC",
"bugs": {
"url": "https://github.com/matabeitt/node-wipay/issues"
},
"homepage": "https://github.com/matabeitt/node-wipay#readme",
"dependencies": {
"axios": "^0.19.2",
"wipay-transaction": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/mocha": "^8.2.0",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}