-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "jest-file-snapshot",
"version": "0.7.0",
"description": "Jest matcher to write snapshots to a separate file instead of the default snapshot file used by Jest",
"keywords": [
"test",
"jest",
"snapshot"
],
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"types": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/satya164/jest-file-snapshot.git"
},
"author": "Satyajit Sahoo <[email protected]> (https://github.com/satya164/)",
"scripts": {
"test": "jest",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"release": "release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "^29.5.12",
"@types/jest-diff": "^24.3.0",
"@types/mkdirp": "^2.0.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.56.0",
"eslint-config-satya164": "^3.2.1",
"jest": "^29.7.0",
"lefthook": "^1.7.0",
"prettier": "^3.3.2",
"release-it": "^17.4.1",
"typescript": "^5.5.3"
},
"dependencies": {
"chalk": "^4.1.2",
"filenamify": "^4.3.0",
"jest-diff": "^29.7.0",
"mkdirp": "^3.0.1"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.js"
],
"watchPathIgnorePatterns": [
"(__fixtures__|__file_snapshots__)"
]
},
"packageManager": "[email protected]"
}