-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "firestore-in-memory",
"version": "0.3.2",
"description": "A drop-in, in-memory implementation of Firestore useful for testing",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint ./src",
"lint:watch": "esw --watch --color ./src",
"build": "rimraf dist && npm run babel",
"babel": "babel src --out-dir dist/ --ignore \"**/*.test.js\"",
"babel:watch": "npm run babel:dev -- --watch",
"prepublishOnly": "npm run build && npm run test:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devzeebo/firestore-in-memory.git"
},
"keywords": [
"firestore",
"in",
"memory",
"jest"
],
"author": "Eric Siebeneich",
"license": "MIT",
"bugs": {
"url": "https://github.com/devzeebo/firestore-in-memory/issues"
},
"homepage": "https://github.com/devzeebo/firestore-in-memory#readme",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-eslint": "^10.1.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-lodash": "^7.1.0",
"eslint-watch": "^7.0.0",
"jest": "^26.6.3",
"jest-gwt": "^2.0.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"core-js": "^3.8.0",
"lodash": "^4.17.20",
"object-hash": "^2.0.3"
}
}