This repository was archived by the owner on Feb 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 KB
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
{
"name": "forex-tool",
"version": "1.0.0",
"description": "This open source project helps systems get up to date real time exchange rates from any currency they might support",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint --ext .js ./",
"test": "jest",
"test-cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeafGlobalFintech/forex-tool.git"
},
"keywords": [
"forex",
"exchange",
"currency"
],
"author": "Leandre Nsengumuremyi <leajapo@gmail.com> (https://github.com/dreking)",
"license": "Apache License",
"bugs": {
"url": "https://github.com/LeafGlobalFintech/forex-tool/issues"
},
"homepage": "https://github.com/LeafGlobalFintech/forex-tool#readme",
"engines": {
"node": ">=16.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"supertest": "^6.1.6"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.6.0",
"winston": "^3.3.3"
}
}