-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.19 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "backend-challenge",
"version": "1.0.0",
"description": "Bunch's Backend Challenge",
"main": "src/index.js",
"scripts": {
"lint": "standard",
"lint:fix": "yarn lint --fix",
"dev": "cross-env NODE_ENV=development nodemon --legacy-watch src/index.js",
"test": "yarn lint && cross-env NODE_ENV=test jest",
"test:cover": "yarn test --coverage",
"test:update": "yarn test -u",
"test:watch": "yarn test --watchAll"
},
"author": "charles@bunch.ai",
"license": "MIT",
"devDependencies": {
"cross-env": "5.2.0",
"jest": "24.8.0",
"nodemon": "1.19.1",
"standard": "13.0.2",
"supertest": "4.0.2"
},
"dependencies": {
"elasticsearch": "16.3.0",
"koa": "2.7.0",
"koa-bodyparser": "4.2.1",
"koa-router": "7.4.0",
"ramda": "0.26.1"
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 80,
"functions": 80,
"lines": 90
}
}
},
"standard": {
"env": [
"node",
"jest"
],
"globals": [
"expect"
]
}
}