-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 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
52
{
"name": "authentication",
"version": "1.0.0",
"description": "Authentication Service - Responsible for authenticating users and providing access tokens",
"main": "./src/server.js",
"scripts": {
"start": "node ./src/server.js",
"test": "jest --coverage",
"watch": "jest --coverage --watchAll",
"lint": "eslint ./src && eslint ./tests",
"testOnly": "jest",
"checkCodeQuality": "eslint ./src && eslint ./tests && jest --coverage",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": -10
}
}
},
"author": "Rithin Chalumuri",
"license": "MIT",
"dependencies": {
"amqp-ts-async": "^1.3.7",
"bcryptjs": "^2.4.3",
"dotenv": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"koa": "^3.0.1",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^4.2.1",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"mongoose": "^5.9.26",
"winston": "^3.3.3",
"snyk": "^1.369.3"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"supertest": "^3.3.0"
},
"snyk": true
}