-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "pxpay",
"version": "2.1.0",
"description": "A node module for using the Payment Express PXPay 2.0 service for payment processing",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"cov": "nyc npm test",
"lint": "eslint ./index.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"preversion": "npm test",
"postversion": "npm publish --access=public",
"postpublish": "git push origin --all --follow-tags && npx publisher"
},
"engines": {
"node": ">= 6"
},
"repository": {
"type": "git",
"url": "git://github.com/Kevnz/pxpay.git"
},
"homepage": "http://kevinisom.info/pxpay",
"keywords": [
"dsp",
"ecommerce",
"payments",
"payment",
"gateway",
"paymentexpress",
"payment",
"express",
"transactions"
],
"author": "Kevin Isom <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kevnz/pxpay/issues"
},
"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",
"chai": "~4.2.0",
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"xmldom": "~0.1.27",
"xpath": "0.0.27"
}
}