This repository was archived by the owner on Aug 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.34 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@koj/firebase-sync",
"version": "1.1.1",
"description": "Sync new Firebase records in near real-time",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koj-co/firebase-sync.git"
},
"keywords": [
"github",
"github actions",
"nodejs",
"typescript",
"firebase"
],
"author": "Anand Chowdhary <mail@anandchowdhary.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koj-co/firebase-sync/issues"
},
"homepage": "https://github.com/koj-co/firebase-sync#readme",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.17",
"@zeit/ncc": "^0.22.3",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"semantic-release": "^17.3.0",
"semantic-release-gitmoji": "^1.3.4",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@koj/config": "^1.2.11",
"axios": "^0.21.0",
"firebase-admin": "^9.4.1"
},
"jest": {
"roots": [
"<rootDir>/src/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"automock": false
}
}