-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
60 lines (60 loc) · 1.32 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
57
58
59
60
{
"name": "currency-cloud",
"description": "Currencycloud API v2 JavaScript client",
"version": "4.6.0",
"author": "Currencycloud",
"contributors": [
{
"name": "Irina Gudkova",
"email": "irina.gudkova@gmail.com"
},
{
"name": "Ed Addario",
"email": "ed.addario@currencycloud.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CurrencyCloud/currencycloud-js.git"
},
"bugs": {
"url": "https://github.com/CurrencyCloud/currencycloud-js/issues"
},
"homepage": "https://www.currencycloud.com",
"keywords": [
"currency cloud",
"currencycloud",
"api",
"client",
"client library"
],
"main": "./lib/currency-cloud",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"combined-stream": "^1.0.7",
"request": "^2.88.0",
"request-promise": "^4.2.6",
"retry": "^0.12.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"jshint": "^2.13.4",
"mocha": "^9.2.0",
"nock": "^10.0.6"
},
"scripts": {
"lint": "jshint examples lib test",
"test": "mocha test/api/ --timeout 15000",
"pretest": "npm run lint"
},
"settings": {
"environment": {
"demo": "https://devapi.currencycloud.com",
"production": "https://api.currencycloud.com"
}
}
}