forked from urish/firebase-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 1.91 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
{
"name": "firebase-server",
"version": "1.1.0",
"description": "Simple Firebase Server",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": "./bin/firebase-server.js",
"scripts": {
"build": "rimraf dist && tsc",
"prepublish": "yarn build",
"test": "yarn lint && yarn cover",
"cover": "nyc mocha",
"debug": "mocha",
"watch": "mocha -w",
"lint": "tslint -p ."
},
"repository": {
"type": "git",
"url": "https://github.com/urish/firebase-server"
},
"keywords": [
"firebase",
"server"
],
"author": "Uri Shaked",
"license": "MIT",
"bugs": {
"url": "https://github.com/urish/firebase-server/issues"
},
"homepage": "https://github.com/urish/firebase-server",
"files": [
"dist",
"bin/firebase-server.js"
],
"devDependencies": {
"@types/debug": "0.0.30",
"@types/firebase-token-generator": "^2.0.28",
"@types/jwt-simple": "^0.5.33",
"@types/lodash": "^4.0.0",
"@types/lolex": "^2.1.1",
"@types/mocha": "^2.2.46",
"@types/node-fetch": "^1.6.7",
"@types/ws": "^7.2.1",
"bluebird": "2.10.2",
"coveralls": "3.0.0",
"firebase-token-generator": "^2.0.0",
"lolex": "^2.3.1",
"mocha": "2.3.3",
"node-fetch": "^1.7.3",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
},
"dependencies": {
"@types/node": "^9.3.0",
"cli": "^1.0.1",
"daemon": "^1.1.0",
"debug": "^3.1.0",
"firebase": ">= 5.0.0",
"jwt-simple": "0.5.6",
"lodash": "^4.17.5",
"targaryen": "^3.1.0",
"ws": "^7.0.0"
},
"engines": {
"node": ">=8.3.0"
},
"nyc": {
"extension": [
".js",
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"lcov",
"html"
],
"sourceMap": true,
"instrument": true
}
}