-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.1 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
{
"name": "pxpost",
"version": "3.0.0",
"description": "A node module for using the Payment Express PXPost service for payment processing",
"main": "index.js",
"scripts": {
"test": "tap tests/index.js",
"cov": "tap tests/index.js --cov",
"preversion": "npm test",
"postversion": "npm publish --access=public",
"postpublish": "git push origin --all --follow-tags && npx publisher"
},
"engines": {
"node": ">= 8"
},
"repository": {
"type": "git",
"url": "git://github.com/Kevnz/pxpost.git"
},
"keywords": [
"payment",
"ecommerce",
"dps",
"paymentexpress",
"transactions"
],
"author": "Kevin Isom <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kevnz/pxpost/issues"
},
"homepage": "http://kevinisom.info/pxpost",
"dependencies": {
"request": "~2.88.0",
"xml": "1.0.1",
"xml2js": "~0.4.22"
},
"devDependencies": {
"@kev_nz/eslint-config": "^5.0.0",
"@kev_nz/publisher": "^4.0.1",
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"proxyquire": "^2.1.3",
"tap": "^14.6.4"
}
}