forked from adonisjs/auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@adonisjs/auth",
"version": "3.0.7",
"description": "Offical authentication provider for Adonis framework",
"main": "index.js",
"files": [
"src",
"providers",
"templates",
"instructions.js",
"instructions.md"
],
"directories": {
"test": "test"
},
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc node japaFile.js",
"test:win": "node ./node_modules/japa-cli/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"commit": "git-cz",
"lint": "standard"
},
"keywords": [
"adonis",
"adonis-framework",
"adonis-auth",
"authentication"
],
"author": "adonisjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adonisjs/adonis-auth"
},
"bugs": {
"url": "https://github.com/adonisjs/adonis-auth/issues"
},
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/lucid": "^6.1.2",
"@adonisjs/mrm-preset": "^1.0.13",
"@adonisjs/sink": "^1.0.17",
"commitizen": "^2.10.1",
"cookie": "^0.3.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"edge.js": "^1.1.4",
"fs-extra": "^7.0.0",
"japa": "^2.0.3",
"japa-cli": "^1.0.1",
"macroable": "^1.0.0",
"mrm": "^1.2.1",
"node-req": "^2.1.1",
"nyc": "^13.0.1",
"pkg-ok": "^2.2.0",
"semver": "^5.5.1",
"sqlite3": "^4.0.2",
"standard": "^12.0.1",
"supertest": "^3.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"test"
]
},
"standard": {
"globals": [
"use"
]
},
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.1",
"basic-auth": "^2.0.1",
"debug": "^4.0.1",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"ms": "^2.1.1",
"resetable": "^1.0.3",
"uuid": "^3.3.2"
}
}