-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.28 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": "snappy-snaps",
"version": "1.1.0",
"description": "Snappy Snaps is a tiny snapshot testing tool which can be used with any test framework and is able to serialize almost anything.",
"type": "module",
"exports": "./lib/snappy-snaps.js",
"types": "./lib/snappy-snaps.d.ts",
"scripts": {
"lint": "eslint",
"format": "prettier $([ $CI ] && echo '--check' || echo '--write') '**/*.{js,jsx,json,yml}'",
"spec": "node --test --test-reporter spec",
"verify": "npm run lint && npm run format",
"test": "npm run verify && npm run spec",
"prepublishOnly": "npm run test",
"prepare": "husky"
},
"keywords": [
"snapshot",
"testing"
],
"author": "Matt Hinchliffe",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/i-like-robots/snappy-snaps.git"
},
"bugs": {
"url": "https://github.com/i-like-robots/snappy-snaps/issues"
},
"homepage": "https://github.com/i-like-robots/snappy-snaps",
"dependencies": {
"callsites": "^4.1.0",
"chalk": "^5.3.0",
"serialize-javascript": "^6.0.1"
},
"devDependencies": {
"eslint": "^9.16.0",
"globals": "^15.13.0",
"husky": "^9.1.0",
"lint-staged": "^15.2.0",
"prettier": "^3.4.2"
},
"engines": {
"node": ">= 18.0.0"
}
}