forked from AndrewBarba/coinbase-commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 865 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
{
"name": "coinbase-commerce",
"version": "1.1.0",
"description": "Node library for commerce.coinbase.com",
"author": "Andrew Barba <[email protected]>",
"homepage": "https://github.com/AndrewBarba/coinbase-commerce",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"license": "MIT",
"engines": {
"node": ">=8.10"
},
"keywords": [
"coinbase",
"commerce",
"crypto",
"promise",
"axios"
],
"bugs": {
"url": "https://github.com/AndrewBarba/coinbase-commerce/issues"
},
"repository": {
"url": "https://github.com/AndrewBarba/coinbase-commerce"
},
"dependencies": {
"axios": "0.18.0"
},
"devDependencies": {
"eslint": "4.19.1",
"mocha": "5.2.0"
},
"scripts": {
"lint": "npx eslint ./",
"test": "npx mocha --exit --bail --slow 1000 --timeout 5000 ./test/test.js"
}
}