-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "jest-specific-snapshot",
"version": "8.0.0",
"license": "MIT",
"repository": "https://github.com/igor-dv/jest-specific-snapshot",
"main": "dist/index.js",
"scripts": {
"test:default": "jest specific.snapshot.test",
"test:old": "jest specific.snapshot.old-format.test --config jest.old-format.config.js",
"test": "npm run test:default && npm run test:old",
"babel": "babel src -d dist",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"prepare": "npm run babel"
},
"dependencies": {
"jest-snapshot": "^29.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.3.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-json": "^2.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-teamcity": "^2.2.0",
"jest": "^29.3.1",
"prettier": "^1.19.1"
},
"peerDependencies": {
"jest": ">= 29.0.0"
}
}