-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "passport-firebase",
"version": "0.0.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"author": "Naoto Sato <[email protected]>",
"description": "passport strategy for firebase authentication",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.build.json",
"test": "jest -i --coverage",
"lint": "eslint \"{lib,tests}/**/*.ts\" --fix && prettier --write \"{lib,tests}/**/*.ts\"",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/starcharles/passport-firebase",
"repository": {
"type": "git",
"url": "https://github.com/starcharles/passport-firebase"
},
"dependencies": {
"@types/passport-jwt": "^3.0.6",
"jwks-rsa": "^2.1.4",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.1",
"jest": "^28.1.3",
"passport": "^0.6.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testPathIgnorePatterns": [
"./examples"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git"
],
"release": {
"branches": [
"main"
]
}
}