-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "@worldbrain/storex-backend-firestore",
"version": "0.1.1",
"description": "Firestore backend for Storex",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"prepare": "tsc",
"prepare:watch": "npm run prepare -- -w",
"test": "mocha --require ts-node/register \"ts/**/*.test.ts\"",
"test:watch": "mocha -r source-map-support/register -r ts-node/register \"ts/**/*.test.ts\" --watch --watch-extensions ts",
"firebase": "firebase"
},
"keywords": [
"storage",
"graph",
"database",
"typescript",
"mbaas",
"baas",
"firebase",
"firestore",
"google"
],
"author": "Vincent den Boer",
"dependencies": {
"lodash": "^4.17.10",
"source-map-support": "^0.4.18"
},
"devDependencies": {
"@firebase/testing": "^0.8.0",
"@types/chai": "^4.0.6",
"@types/events": "^1.2.0",
"@types/expect": "^1.20.4",
"@types/lodash": "^4.14.123",
"@types/mocha": "^2.2.44",
"@types/node": "^10.12.11",
"@worldbrain/storex": "^0.3.5",
"@worldbrain/storex-pattern-modules": "^0.3.0",
"chai": "^4.1.2",
"expect": "^23.5.0",
"firebase": "^5.8.2",
"firebase-tools": "^6.7.1",
"line-numbers": "^0.2.2",
"mocha": "^4.0.1",
"sinon": "^4.1.2",
"strip-indent": "^3.0.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"peerDependencies": {
"firebase": "^5.8.2",
"@worldbrain/storex": "^0.3.5",
"@worldbrain/storex-pattern-modules": "^0.3.0"
}
}