-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
129 lines (129 loc) · 3.15 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "jest-screenshot",
"keywords": [
"test",
"css",
"visual testing",
"visual regression",
"jest",
"browser testing",
"puppeteer",
"snapshot",
"screenshot",
"diff",
"image"
],
"version": "0.3.5",
"description": "A jest extension to deal with screenshots and all sorts of images.",
"main": "dist/index.js",
"author": "Frederick Gnodtke",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig-production.json --sourceMap",
"test": "jest -i",
"lint": "tslint --format stylish --type-check --project tsconfig.json",
"clean": "rm -rf dist",
"docs": "typedoc --out docs/ --exclude '**/test-*.ts,**/report-viewer/**/*' src/"
},
"repository": {
"type": "git",
"url": "https://github.com/Prior99/jest-screenshot"
},
"files": [
"index.d.ts",
"reporter.js",
"./dist"
],
"jest": {
"coverageThreshold": {
"global": {
"statements": 100,
"lines": 100,
"functions": 100
}
},
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/test-*.(ts|js|tsx)"
],
"testPathIgnorePatterns": [
"/example/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/jest-framework-setup.ts",
"<rootDir>/src/index.ts"
],
"reporters": [
"default",
"<rootDir>/dist/reporter"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^.+\\.(css|scss|sass)$": "identity-obj-proxy",
"bulma": "identity-obj-proxy"
},
"setupFilesAfterEnv": [
"<rootDir>/jest-framework-setup.ts"
]
},
"devDependencies": {
"@jest/reporters": "^26.6.2",
"@jest/test-result": "^26.6.2",
"@types/classnames": "^2.2.3",
"@types/enzyme": "^3.1.9",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^26.0.15",
"@types/lodash.kebabcase": "^4.1.3",
"@types/mkdirp": "^0.5.2",
"@types/node": "^13.7.0",
"@types/react": "^16.3.10",
"@types/react-dom": "^16.0.5",
"@types/rimraf": "^2.0.2",
"ansi-to-react": "^6.0.0",
"awesome-typescript-loader": "^5.0.0",
"bulma": "^0.8.0",
"classnames": "^2.2.5",
"coveralls": "^3.0.0",
"css-loader": "^5.2.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lodash-decorators": "^6.0.1",
"mini-css-extract-plugin": "^2.1.0",
"mobx": "^5.15.4",
"mobx-react": "^6.1.7",
"node-sass": "^6.0.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"resolve-url-loader": "^4.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^12.1.0",
"ts-jest": "^26.4.4",
"tsdi": "^0.22.0",
"tslint": "^6.0.0",
"typedoc": "^0.21.2",
"typescript": "^4.1.2",
"webpack": "5.42.1",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"chalk": "^3.0.0",
"lodash.kebabcase": "^4.1.1",
"mkdirp": "^1.0.4",
"native-image-diff": "^0.1.14",
"node-libpng": "^0.2.20"
}
}