This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "fireway",
"version": "1.1.0",
"description": "Schema migration tool for Firestore",
"types": "fireway.d.ts",
"keywords": [
"schema",
"migration",
"firestore",
"typescript"
],
"files": [
"/src",
"LICENSE",
"README.md",
"fireway.d.ts"
],
"main": "src/index.js",
"bin": "src/cli.js",
"repository": "[email protected]:kevlened/fireway.git",
"author": "kevlened <[email protected]>",
"license": "MIT",
"scripts": {
"setup": "firebase setup:emulators:firestore",
"emulator": "firebase emulators:start --only firestore",
"test-runner": "node tests",
"pretest": "mkdir -p tests/emptyMigration",
"test": "FIRESTORE_EMULATOR_HOST=0.0.0.0:8181 start-test emulator tcp:8181 test-runner",
"release": "yarn test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm login && npm publish"
},
"husky": {
"hooks": {
"pre-push": "yarn test"
}
},
"dependencies": {
"@google-cloud/firestore": "^5.0.2",
"callsites": "^3.1.0",
"firebase-admin": "^10.1.0",
"md5": "^2.2.1",
"sade": "^1.6.1",
"semver": "^7.3.7"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^1.0.4",
"capture-console": "^1.0.1",
"firebase-tools": "^10.7.2",
"husky": "^4.2.5",
"start-server-and-test": "^1.14.0",
"tape": "^4.13.2",
"ts-node": "^10.7.0",
"@types/node": "^14.18.16",
"typescript": "^4.6.4"
}
}