-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.21 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
{
"name": "passport-easydb",
"version": "0.2.0",
"description": "easydb authentication strategy for Passport.",
"keywords": [
"passport",
"easydb",
"auth",
"authn",
"authentication",
"identity"
],
"author": "Stefan Peters",
"repository": {
"type": "git",
"url": "http://github.com/gbv/passport-easydb.git"
},
"bugs": {
"url": "http://github.com/gbv/passport-easydb/issues"
},
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib/index.js",
"type": "module",
"scripts": {
"test": "npm run lint",
"lint": "eslint",
"fix": "eslint --fix",
"lint-staged": "lint-staged",
"release": "npm test && git pull && npm version $SEMVER && git push --follow-tags",
"release:patch": "SEMVER=patch npm run release",
"release:minor": "SEMVER=minor npm run release",
"release:major": "SEMVER=major npm run release"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"pre-commit": [
"lint-staged"
],
"devDependencies": {
"eslint": "~9.11",
"eslint-config-gbv": "~2.1",
"lint-staged": "^15.2.10",
"pre-commit": "^1.2.2"
},
"dependencies": {
"axios": "^1.7.7",
"passport-strategy": "^1.0.0"
}
}