forked from processout/processout-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 877 Bytes
/
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
{
"name": "processout",
"version": "8.2.7",
"description": "ProcessOut API bindings.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/processout/processout-node.git"
},
"keywords": [
"ProcessOut",
"API",
"bindings"
],
"author": "ProcessOut <[email protected]> (https://processout.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/processout/processout-node/issues"
},
"homepage": "https://github.com/processout/processout-node#readme",
"dependencies": {
"@types/node": "^13.7.4",
"node-fetch": "^2.6.0",
"btoa": "^1.1.2"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^6.0.2"
},
"files": [
"lib/**/*",
"src/**/*"
],
"engines": {
"node": "^8 || >=10"
}
}