-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"name": "@freetrade-io/ts-firebase-driver-testing",
"version": "1.0.22",
"description": "Swap out Firebase as a driver for in-process testing",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn build"
},
"repository": "https://github.com/freetrade-io/ts-firebase-driver-testing",
"author": "Freetrade",
"license": "MIT",
"private": false,
"dependencies": {
"flat": "^5.0.0",
"lodash": ">=4",
"object-path": "^0",
"object.entries": "^1",
"object.values": "^1",
"p-limit": "^3.1.0"
},
"devDependencies": {
"@google-cloud/firestore": "^5.0.2",
"@types/flat": "^5.0.0",
"@types/jest": "^25.1.0",
"@types/lodash": "^4",
"@types/node": "^13.1.4",
"@types/object-path": "^0",
"jest": "^25.1.0",
"prettier": "~1",
"ts-jest": "^25.1.0",
"tslint": "^5",
"tslint-config-prettier": ">=1",
"tslint-plugin-prettier": ">=2",
"typescript": "^4.6.4"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!tests/**",
"!**/*test.ts"
],
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tests/tsconfig.json"
}
},
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.ts"
],
"testEnvironment": "node"
}
}