-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
85 lines (85 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"contributors": [
{
"name": "skmdev",
"email": "[email protected]",
"url": "https://github.com/skmdev"
},
{
"name": "Nidin Vinayakan",
"email": "[email protected]",
"url": "https://github.com/nidin"
},
{
"name": "Christian Cuna",
"email": "[email protected]",
"url": "https://github.com/christian-cuna"
},
{
"name": "Vedant K",
"email": "[email protected]",
"url": "https://github.com/gamemaker1"
}
],
"dependencies": {
"jest-get-type": "25.1.0",
"jest-matcher-utils": "25.1.0",
"lodash": "^4.17.15"
},
"description": "A jest matcher to verify the structure of an object, particularly useful for api integration tests",
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/jest": "24.9.1",
"@types/jest-get-type": "24.2.0",
"@types/jest-matcher-utils": "25.1.0",
"@types/lodash": "4.14.149",
"codecov": "3.7.1",
"jest": "25.1.0",
"ts-jest": "25.0.0",
"tslint": "6.0.0",
"tslint-react": "4.2.0",
"typescript": "3.7.5"
},
"files": [
"dist"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/src/common-types.ts",
"<rootDir>/src/index.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).ts?(x)"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "jest-to-match-shape-of",
"peerDependencies": {
"jest": ">=25"
},
"repository": "[email protected]:Dean177/jest-to-match-shape-of.git",
"scripts": {
"build": "rm -rf dist && tsc",
"dev": "tsc --noEmit --pretty --watch",
"lint": "tslint ./src/**/*.ts",
"prepublish": "yarn build && yarn lint && yarn test",
"report-coverage": "codecov",
"test": "jest"
},
"version": "1.3.2"
}