-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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": "@xe/xecd-rates-client",
"description": "XECD REST Client",
"version": "0.2.0",
"repository": "XenonLab/xecd-rates-client-node",
"main": "index.js",
"keywords": [
"xecd",
"node",
"api",
"client",
"xe",
"currency",
"data",
"rest"
],
"homepage": "http://www.xe.com/xecurrencydata/",
"license": "MPL-2.0",
"dependencies": {
"async": "^1.0",
"base-64": "^0.1",
"request": "^2.0",
"utf8": "^2.0",
"winston": "^2.0"
},
"engines": {
"node": ">=6.0"
},
"devDependencies": {
"chai": "^4.0",
"chai-http": "^1.0",
"mocha": "^3.0",
"sinon": "^3.0"
},
"contributors": [
{
"name": "XE.com Inc. Development Team",
"url": "http://www.xe.com/"
}
],
"scripts": {
"test": "npm run-script unit-test",
"integration-test": "./node_modules/mocha/bin/mocha ./integration/XecdClientTest.js",
"unit-test": "./node_modules/mocha/bin/mocha ./unit/XecdClientTest.js"
}
}