-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1009 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1009 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
41
{
"name": "userapiwithtest",
"version": "1.0.0",
"description": "The overarching application for the 3 apis",
"main": "index.js",
"scripts": {
"start": "node index.js prod",
"startLocal": "nodemon index.js",
"test": "mocha -u bdd -R spec",
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/marcusoftnet/UserApiWithTest.git"
},
"keywords": [
"koa",
"api",
"rest",
"supertest"
],
"author": "Marcus Hammarberg @marcusoftnet",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcusoftnet/UserApiWithTest/issues"
},
"homepage": "https://github.com/marcusoftnet/UserApiWithTest",
"dependencies": {
"addressapi": "file:./apis/address",
"koa": "^2.5.1",
"koa-mount": "^3.0.0",
"orderapi": "file:./apis/order",
"userapi": "file:./apis/user"
},
"devDependencies": {
"mocha": "^5.2.0",
"standard": "^11.0.1",
"supertest": "^3.1.0"
}
}