forked from geshan/currency-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 957 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 957 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
36
37
38
39
{
"name": "currency-api",
"version": "1.0.0",
"description": "A currency api with historical data",
"main": "index.js",
"scripts": {
"start": "PORT=8080 nodemon -L -e js,yml,sql index.js",
"test": "mocha -t 500 -b",
"test-cov": "nyc mocha -t 500 -b"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/geshan/currency-api.git"
},
"keywords": [
"test"
],
"author": "Geshan Manandhar",
"license": "ISC",
"bugs": {
"url": "https://github.com/geshan/currency-api/issues"
},
"homepage": "https://github.com/geshan/currency-api",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-async-errors": "^3.0.0",
"expressjs-utils": "^1.2.1",
"lodash": "^4.17.11",
"namshi-node-mysql": "^2.0.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"nock": "^10.0.0",
"nyc": "^13.0.1",
"proxyquire": "^2.1.0"
}
}