-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "chatz-lib",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha --reporter spec --require test/bootstrap/node test/**/*.test.js",
"coverage": "NODE_ENV=test nyc mocha --reporter spec --require test/bootstrap/node test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/try-it-out/chatz-lib.git"
},
"author": "Vasilii Ermilov",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/try-it-out/chatz-lib/issues"
},
"homepage": "https://github.com/try-it-out/chatz-lib#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.0",
"mongodb-memory-server": "^6.2.0",
"mongodb-memory-server-global": "^5.2.3",
"nyc": "^14.1.1"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"winston": "^3.2.1"
}
}