-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.6 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
{
"name": "kuzzle-plugin-auth-passport-local",
"version": "6.4.1",
"description": "Kuzzle plugin to log-in users",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/kuzzle-plugin-auth-passport-local.git"
},
"scripts": {
"test": "eslint lib test && npm run unit-testing",
"unit-testing": "nyc --reporter=text-summary --reporter=lcov mocha"
},
"keywords": [
"kuzzle",
"plugin",
"auth",
"passportjs"
],
"author": {
"name": "Kuzzle Team"
},
"bugs": {
"url": "https://github.com/kuzzleio/kuzzle-plugin-auth-passport-local/issues"
},
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.3.3",
"jsonwebtoken": "^9.0.2",
"ms": "^2.1.3",
"passport": "0.7.0",
"passport-local": "1.0.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.7.0",
"kuzzle": "2.31.0",
"mocha": "^9.1.4",
"nyc": "^15.1.0",
"semantic-release-config-kuzzle": "^1.0.0",
"semantic-release-slack-bot": "^4.0.2",
"should": "13.2.3",
"should-sinon": "0.0.6",
"sinon": "^12.0.1"
},
"homepage": "https://github.com/kuzzleio/kuzzle-plugin-auth-passport-local#readme",
"maintainers": [
{
"name": "kuzzle",
"email": "support@kuzzle.io"
}
]
}