-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 787 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 787 Bytes
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
{
"name": "oxr",
"version": "1.1.4",
"description": "Advanced Node.js wrapper for the Open Exchange Rates API",
"main": "index.js",
"scripts": {
"test": "npx nyc mocha --report lcovonly -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"promise",
"exchange",
"rate",
"currency",
"money",
"oxr"
],
"repository": {
"type": "git",
"url": "https://github.com/continuous-software/oxr.git"
},
"author": "Laurent Renard",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"request": "^2.78.0"
},
"devDependencies": {
"coveralls": "^3.0.9",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.0.0",
"standard": "^14.3.3"
}
}