-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
60
61
{
"name": "jest-mocks",
"author": "Raice Hannay <voodoocreation@gmail.com>",
"description": "A set of useful mocks and helpers for the Jest unit testing framework.",
"license": "ISC",
"version": "1.0.5",
"keywords": [
"jest",
"mock",
"mocks",
"mock-functions",
"mock-promise",
"promises",
"test",
"testing",
"typescript",
"unit-test",
"unit-testing"
],
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx}\"",
"lint": "eslint \"./src/**/*.ts?(x)\"",
"lint:fix": "eslint \"./src/**/*.ts?(x)\" --fix",
"test": "cross-env NODE_ENV=test jest --no-cache --config ./jest.config.js",
"test:all": "npm-run-all format typecheck lint:fix test:coverage",
"test:coverage": "cross-env NODE_ENV=test jest --no-cache --coverage --config ./jest.config.js",
"typecheck": "tsc"
},
"prepublish": "tsc",
"repository": {
"type": "git",
"url": "git@github.com:voodoocreation/jest-mocks.git"
},
"bugs": {
"url": "https://github.com/voodoocreation/jest-mocks/issues"
},
"homepage": "https://github.com/voodoocreation/jest-mocks#readme",
"types": "dist/index.d.ts",
"peerDependencies": {
"jest": ">= 26.6.3"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-config-voodoocreation": "^2.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}