-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "snapshot-diff",
"version": "0.10.0",
"description": "Diffing Jest snapshots utility",
"main": "build/index.js",
"typings": "index.d.ts",
"license": "MIT",
"author": "Michał Pierzchała <thymikee@gmail.com>",
"scripts": {
"build": "babel src --out-dir build",
"lint": "eslint . --ext js --cache",
"typecheck": "flow check",
"prepublish": "npm run build",
"test": "jest",
"watch": "babel -w src --out-dir build"
},
"repository": "https://github.com/thymikee/snapshot-diff",
"engines": {
"node": ">=14"
},
"peerDependencies": {
"jest": ">=16"
},
"dependencies": {
"jest-diff": "^29.0.0",
"jest-snapshot": "^29.0.0",
"pretty-format": "^29.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.7.0",
"@callstack/eslint-config": "^13.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^8.0.0",
"flow-bin": "^0.129.0",
"jest": "^29.0.0",
"react": "^16.13.1",
"react-dom": "16.14.0",
"react-test-renderer": "^16.13.1"
}
}