-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
{
"name": "firebase-functions-helper",
"version": "0.12.0",
"description": "A helper NPM package for Firebase Cloud Functions",
"author": {
"name": "Dale Nguyen",
"email": "[email protected]",
"url": "http://dalenguyen.me"
},
"homepage": "https://github.com/dalenguyen/firebase-functions-helper#readme",
"bugs": {
"url": "https://github.com/dalenguyen/firebase-functions-helper/issues"
},
"keywords": [
"firebase",
"cloud",
"functions",
"functions",
"helper"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json",
"package:check": "ncu",
"build": "tsc && npm run minify",
"minify": "jsmin -o dist/firebase.js dist/firebase.js && jsmin -o dist/firestore.js dist/firestore.js && jsmin -o dist/realtime.js dist/realtime.js && jsmin -o dist/index.js dist/index.js",
"test:local": "source env.test.sh && mocha --timeout 99999999 --exit -r ts-node/register test/**/*.spec.ts",
"test": "mocha --timeout 99999999 --exit -r ts-node/register test/**/*.spec.ts",
"prod:local": "rm dist/* && npm run lint && npm run build && npm run test:local",
"prod": "npm run lint && npm run build && npm run test"
},
"dependencies": {
"firebase-admin": "^9.8.0",
"firestore-export-import": "^0.15.0"
},
"deprecated": false,
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"jsmin": "^1.0.1",
"mocha": "^8.4.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=10"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dalenguyen/firebase-functions-helper.git"
},
"publishConfig": {
"access": "public"
}
}