-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "redpanda-odm",
"version": "1.2.4",
"description": "Firestore ODM with schema validation and support for foreign keys & references ($lookup and JOIN)",
"main": "dist/index.js",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register ./src/index.ts",
"start2": "node ./dist/index.js",
"start:watch": "nodemon",
"build": "tsc && tsc -p tsconfig.browser.json",
"test": "mocha --timeout 10000 --require ts-node/register src/**/*.test.ts",
"fs-test": "firebase emulators:exec --only firestore 'npm test'",
"fs": "firebase emulators:start --only firestore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcsimps2/RedPanda.git"
},
"keywords": [
"firestore",
"firebase",
"odm",
"orm",
"object",
"document",
"mapper",
"schema",
"validation",
"foreign",
"key",
"reference",
"dereference",
"red",
"panda",
"redpanda",
"lookup",
"$lookup",
"JOIN"
],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^15.0.3",
"@types/hapi__joi": "^15.0.2",
"lodash": "^4.17.11"
},
"devDependencies": {
"@firebase/testing": "^0.11.0",
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"eslint": "^5.15.1",
"eslint-plugin-import": "^2.16.0",
"firebase": "^7.8.0",
"mocha": "^6.1.4",
"nodemon": "^1.18.10",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.3.3333"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"files": [
"dist",
"dist.browser"
]
}