-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "snapshot-fixtures",
"version": "1.2.0",
"description": "Snapshot fixtures for node:test",
"keywords": [
"assert",
"diff",
"equal",
"fixture",
"snapshot",
"string",
"test"
],
"homepage": "https://github.com/remcohaszing/snapshot-fixtures",
"bugs": "https://github.com/remcohaszing/snapshot-fixtures/issues",
"repository": "remcohaszing/snapshot-fixtures",
"funding": "https://github.com/sponsors/remcohaszing",
"license": "MIT",
"author": "Remco Haszing <remcohaszing@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": "./dist/snapshot-fixtures.js",
"files": [
"dist",
"src",
"!*.test.*"
],
"scripts": {
"prepack": "tsc --build",
"pretest": "tsc --build",
"test": "c8 node --enable-source-maps --test"
},
"dependencies": {
"chalk": "^5.0.0",
"ci-info": "^4.0.0",
"diff": "^5.0.0",
"to-vfile": "^8.0.0",
"vfile": "^6.0.0"
},
"peerDependencies": {
"prettier": ">=3"
},
"devDependencies": {
"@types/diff": "^5.0.0",
"@types/node": "^20.0.0",
"c8": "^9.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"prettier": "^3.0.0",
"remark-cli": "^11.0.0",
"remark-preset-remcohaszing": "^2.0.0",
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
}
}