-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
{
"author": "Matthew Sullivan",
"bugs": {
"url": "https://github.com/matthewsullivan/koa-jwt-mongo-auth/issues"
},
"config": {
"db": {
"database": "kjma_test",
"host": "localhost",
"port": 27017
}
},
"description": "koa-jwt-mongo-auth",
"dependencies": {
"argon2": "^0.15.0",
"email-validator": "^2.0.4",
"glob": "^7.1.2",
"jsonwebtoken": "^9.0.0",
"koa": "^2.2.0",
"koa-body": "^2.3.0",
"koa-helmet": "^5.2.0",
"koa-passport": "^5.0.0",
"koa-router": "^7.0.1",
"mongodb": "^3.5.5",
"nodemon": "^2.0.20",
"owasp-password-strength-test": "^1.3.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"ava": "^5.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"eslint-config-google": "^0.12.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=8.9.1 <11.10.0"
},
"homepage": "https://github.com/matthewsullivan/koa-jwt-mongo-auth#readme",
"keywords": [],
"license": "MIT",
"main": "app.js",
"name": "koa-jwt-mongo-auth",
"repository": {
"type": "git",
"url": "git+https://github.com/matthewsullivan/koa-jwt-mongo-auth.git"
},
"scripts": {
"db-collections": "mongo $npm_package_config_db_host:$npm_package_config_db_port/$npm_package_config_db_database modules/*/models/collections/*.js",
"db-init": "npm init -f && npm run -s db-collections && npm run -s db-seed",
"db-seed": "node ./config/lib/seed.js",
"debug": "NODE_ENV=development && nodemon --inspect app.js",
"start": "NODE_ENV=production && node app.js",
"test": "NODE_ENV=test && ava modules/*/tests/*.js -s -v"
},
"version": "1.0.3"
}