-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1018 Bytes
/
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
{
"name": "mockbase",
"version": "0.6.1",
"description": "Firebase v7+ mock.",
"main": "app/index.js",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^10.17.35",
"coveralls": "^3.1.0",
"firebase": "^7.14.4",
"jest": "^26.4.2",
"jest-create-mock-instance": "^1.1.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"typescript": "^3.9.3"
},
"scripts": {
"build": "tsc",
"clean": "git clean -Xf **/*.js **/*.js.map **/*.d.ts",
"lint": "prettier --check --ignore-path .gitignore .",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch --notify"
},
"repository": "gustavohenke/mockbase",
"license": "MIT",
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}