-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
{
"name": "firebase-function-client-type-gen",
"version": "2.0.0",
"description": "generator firebase functions httpsOnCall function types",
"main": "dist/index.js",
"files": [
"dist",
"templates"
],
"bin": {
"gen-ffc": "./dist/bin/gen-ffc.js"
},
"scripts": {
"clean": "rimraf ./dist/*",
"build": "npm run clean && tsc",
"test": "npm run build && mocha -r ts-node/register tests/**/*.test.ts",
"snap": "npm run build && SNAP=1 mocha -r ts-node/register tests/**/*.test.ts"
},
"keywords": ["firebase", "firebase-functions", "types", "code-gen"],
"repository": "https://github.com/tkow/firebase-function-client-type-gen.git",
"author": "tkow <t.kusama0613@outlook.jp>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@types/proxyquire": "^1.3.28",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"chai": "^4.3.6",
"dummy": "link:fixtures/external-module/dummy",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"firebase": "^9.8.0",
"firebase-functions": "^3.21.0",
"mocha": "^10.0.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"typescript": ">=4.0.0"
},
"dependencies": {
"ts-morph": "^15.0.0"
}
}