-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "merchants",
"version": "0.2.2",
"description": "A framework agnostic, multi-gateway payment processing library for node.js, like Omnipay for php or ActiveMerchants for ruby",
"main": "lib/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dianpou/merchants.git"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/lib",
"__lib__"
]
},
"keywords": [
"payment",
"merchant",
"alipay",
"stripe",
"paypal",
"ActiveMerchants",
"Omnipay",
"wechatpay"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/dianpou/merchants/issues"
},
"homepage": "https://github.com/dianpou/merchants#readme",
"devDependencies": {
"jest": "^19.0.2"
},
"dependencies": {
"axios": "^0.16.1",
"blueimp-md5": "^2.7.0",
"https": "^1.0.0",
"lodash": "^4.17.4",
"stripe": "^4.18.0"
}
}