-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 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
62
63
64
65
{
"name": "@dev-aces/fireway",
"version": "2.0.1",
"description": "A schema migration tool for Firestore",
"types": "lib/index.d.ts",
"keywords": [
"schema",
"migration",
"firestore",
"typescript"
],
"files": [
"/lib",
"/src",
"LICENSE",
"README.md"
],
"main": "lib/index.js",
"bin": {
"fireway": "lib/cli.js"
},
"repository": "git@github.com:dev-aces/fireway.git",
"author": "Artur Ampilogov",
"license": "MIT",
"scripts": {
"clean": "rimraf ./lib",
"build": "npm run clean && tsc",
"setup": "firebase setup:emulators:firestore",
"emulator": "firebase emulators:start --only firestore",
"test-runner": "node tests",
"pretest": "mkdir -p tests/emptyMigration",
"test": "GCLOUD_PROJECT=test FIRESTORE_EMULATOR_HOST=0.0.0.0:8181 start-test emulator tcp:8181 test-runner",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"husky": {
"hooks": {
"pre-push": "npm run format && npm run build && npm test"
}
},
"peerDependencies": {
"firebase-admin": ">=10"
},
"dependencies": {
"md5": "^2.3.0",
"sade": "^1.8.1",
"semver": "^7.5.0"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^2.0.7",
"@types/md5": "^2.3.2",
"@types/node": "^14.18.16",
"@types/semver": "^7.3.13",
"capture-console": "^1.0.1",
"firebase": "^9.21.0",
"firebase-admin": "^11.7.0",
"firebase-tools": "^11.29.1",
"husky": "^4.2.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"start-server-and-test": "^1.14.0",
"tape": "^4.13.2",
"ts-node": "^10.7.0",
"typescript": "^4.9.5"
}
}