-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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": "machinepack-wepay",
"version": "0.1.4",
"description": "Communicate with WePay API to register users, create accounts and accept payments.",
"scripts": {
"test": "node ./node_modules/test-machinepack-mocha/bin/testmachinepack-mocha.js"
},
"keywords": [
"WePay",
"machines",
"machinepack"
],
"author": "Luke Heath",
"license": "MIT",
"repository": "https://github.com/lukeheath/machinepack-wepay",
"dependencies": {
"machine": "^10.0.0",
"wepay": "0.0.5"
},
"devDependencies": {
"test-machinepack-mocha": "^2.0.0"
},
"machinepack": {
"friendlyName": "WePay",
"machineDir": "machines/",
"machines": [
"app-details",
"user-details",
"user-callback",
"user-register",
"user-confirm",
"account-create",
"account-details",
"account-find",
"account-modify",
"account-delete",
"account-get-uri",
"checkout-create",
"checkout-capture",
"checkout-find",
"checkout-refund",
"checkout-details",
"checkout-cancel"
]
}
}