-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "fiery-firebase-memory",
"version": "1.0.0",
"author": "Philip Diffenderfer",
"description": "An in memory TypeScript/JS clone of Firebase & Firestore",
"license": "MIT",
"main": "dist/fiery-firebase-memory.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"test": "mocha -r ts-node/register tests/**/*.ts"
},
"keywords": [
"fiery",
"firebase",
"firestore",
"test",
"cloud firestore",
"mock"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^10.7.1",
"@types/webpack": "^4.4.10",
"chai": "^4.1.2",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"ts-loader": "^4.0.0",
"ts-node": "^7.0.1",
"typescript": "^2.9.2",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}