-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 941 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 941 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
40
{
"name": "restapitesting",
"version": "1.0.0",
"description": "Implementation on how to test Restful API'S in Node Js with Mocha and Chai",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LearninNodeJs/Testing_Restful_API.git"
},
"keywords": [
"mocha",
"chai",
"node",
"testing",
"restful",
"apis"
],
"author": "Kamau Brian",
"license": "MIT",
"bugs": {
"url": "https://github.com/LearninNodeJs/Testing_Restful_API/issues"
},
"homepage": "https://github.com/LearninNodeJs/Testing_Restful_API#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"mocha": "^5.2.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"config": "^3.0.0",
"express": "^4.16.4",
"mongoose": "^5.3.13",
"morgan": "^1.9.1"
}
}