This repository has been archived by the owner on Jun 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
119 lines (119 loc) · 2.89 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
110
111
112
113
114
115
116
117
118
119
{
"name": "adonis5-firebase-admin",
"version": "1.1.1",
"types": "build/adonis-typings/index.d.ts",
"typings": "build/adonis-typings/index.d.ts",
"scripts": {
"build": "npm run compile",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:files",
"copy:files": "cp -R 'templates' 'build/templates'",
"start": "node server.js",
"dev": "node ace serve --watch",
"format": "prettier --write .",
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test": "node japaFile.js",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json rollivier/adonis5-firebase-admin"
},
"devDependencies": {
"@adonisjs/assembler": "^5.0.0",
"@adonisjs/mrm-preset": "^2.4.0",
"@types/node": "^14.14.6",
"adonis-preset-ts": "^1.1.0",
"commitizen": "^1.0.4",
"cz-conventional-changelog": "^3.0.1",
"del-cli": "^3.0.1",
"doctoc": "^2.2.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-adonis": "^1.0.15",
"eslint-plugin-prettier": "^3.1.4",
"github-label-sync": "^2.0.0",
"husky": "^4.3.0",
"japa": "^3.1.1",
"mrm": "^2.5.12",
"np": "^7.0.0",
"npm-audit-html": "^1.4.3",
"pino-pretty": "^4.3.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"youch": "^2.1.1",
"youch-terminal": "^1.0.1"
},
"dependencies": {
"@adonisjs/core": "^5.1.0",
"@adonisjs/repl": "^3.0.0",
"firebase-admin": "^10.2.0",
"proxy-addr": "^2.0.7",
"reflect-metadata": "^0.1.13"
},
"husky": {
"hooks": {
"pre-commit": "doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"license": "MIT",
"main": "build/index.js",
"files": [
"build"
],
"adonisjs": {
"types": "adonis5-firebase-admin",
"providers": [
"adonis5-firebase-admin"
],
"templates": {
"basePath": "./build/templates",
"config": [
{
"src": "config.txt",
"dest": "firebase"
}
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"description": "Firebase admin provider for AdonisJS 5",
"repository": {
"type": "git",
"url": "git+https://github.com/rollivier/adonis5-firebase-admin.git"
},
"keywords": [
"Adonisjs",
"Adonis",
"5",
"firebase",
"firebase-admin",
"adonis-firebase",
"adonis5-firebase"
],
"author": "Romain OLLIVIER <[email protected]>",
"bugs": {
"url": "https://github.com/rollivier/adonis5-firebase-admin/issues"
},
"homepage": "https://github.com/rollivier/adonis5-firebase-admin#readme"
}