-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.8 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"private": false,
"name": "@weegigs/firebase-express-authenticator",
"description": "Express middleware for firebase authentication",
"license": "MIT",
"author": "Kevin O'Neill <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/weegigs/firebase-express-authenticator.git"
},
"version": "3.0.0",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "yarn run clean && yarn run lint && yarn run compile",
"clean": "npx rimraf lib",
"precommit": "lint-staged",
"compile": "yarn run compile:tsc",
"compile:tsc": "npx tsc -p .",
"lint": "npx tslint -c tslint.json --project . \"src/**/*.ts\"",
"release": "yarn build && npx semantic-release",
"test": "yarn run test:unit",
"test:unit": "npx jest \"tests/*\" --env=node --coverage",
"test:watch": "npx jest \"tests/*\" --env=node --coverage --watch",
"watch": "npx concurrently -k --names='tsc' 'yarn run watch:tsc'",
"watch:tsc": "npx tsc -p . --watch"
},
"types": "lib/index.d.ts",
"dependencies": {},
"peerDependencies": {
"express": "^4.16.3",
"firebase-admin": "^7.0.0"
},
"devDependencies": {
"@firebase/app-types": "0.3.4",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/git": "7.0.8",
"@semantic-release/npm": "5.1.4",
"@types/express": "4.16.1",
"@types/jest": "24.0.9",
"@types/node": "11.9.5",
"concurrently": "4.1.0",
"express": "4.16.4",
"firebase-admin": "7.0.0",
"husky": "1.3.1",
"jest": "24.1.0",
"jest-cli": "24.1.0",
"jest-environment-node-debug": "2.0.0",
"lint-staged": "8.1.4",
"nodemon": "1.18.10",
"prettier": "1.16.4",
"prettier-package-json": "2.1.0",
"rimraf": "2.6.3",
"semantic-release": "15.13.3",
"ts-jest": "24.0.0",
"tslint": "5.13.0",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.3.3333"
},
"keywords": [
"auth",
"authentication",
"express",
"firebase",
"middleware"
],
"publishConfig": {
"access": "public"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"transform": {
".(ts|tsx)": "node_modules/ts-jest/preprocessor.js"
}
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add package.json"
]
},
"nodemonConfig": {
"delay": "2000"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}