-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "exchangerate-api",
"version": "0.1.0",
"description": "Currency Exchange Rates API Client",
"main": "src/index.js",
"scripts": {
"test": "nyc mocha -t 200000 test",
"lint": "eslint ./src",
"console": "node --experimental-repl-await",
"jsdoc": "jsdoc src/* README.md"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/EloquentStudio/exchangerate-api-node.git"
},
"keywords": [
"currency",
"exchange-rate"
],
"author": "Jiren Patel",
"license": "MIT",
"bugs": {
"url": "https://github.com/EloquentStudio/exchangerate-api-node/issues"
},
"homepage": "https://github.com/EloquentStudio/exchangerate-api-node#readme",
"engines": {
"node": ">=8.10.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdoc": "^3.6.3",
"mocha": "^6.2.1",
"nyc": "^14.1.1"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}