generated from mathieueveillard/js-kata-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 955 Bytes
/
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
{
"name": "jest-golden-master",
"version": "0.1.0",
"description": "Golden master utils for Jest",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "jest --watch --coverage",
"format": "prettier --write \"src/**/*.ts\"",
"build": "cp src/index.ts dist && tsc --outDir dist"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"prettier": {
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathieueveillard/jest-golden-master.git"
},
"keywords": [
"node",
"typescript",
"jest",
"goldenmaster"
],
"author": "Mathieu Eveillard",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieueveillard/jest-golden-master/issues"
},
"homepage": "https://github.com/mathieueveillard/jest-golden-master#readme"
}