forked from sbatson5/firestore-jest-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "firestore-jest-mock",
"version": "0.12.0",
"description": "Jest helper for mocking Google Cloud Firestore",
"author": "",
"license": "MIT",
"keywords": [
"Jest",
"Firestore"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
],
"*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Upstatement/firestore-jest-mock.git"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@upstatement/eslint-config": "^0.4.3",
"@upstatement/prettier-config": "^0.3.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.1.5",
"firebase": "^8.1.2",
"firebase-admin": "^9.4.1",
"husky": "^4.2.1",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.3.1",
"lint-staged": "^10.0.2",
"prettier": "^1.19.1",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}