-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 794 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 794 Bytes
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
{
"scripts": {
"deps": "deno run -A index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prettier:check": "prettier -c ./",
"prettier:write": "prettier --write .",
"publish": "npx jsr publish --allow-dirty",
"publish:check": "npx jsr publish --allow-dirty --dry-run"
},
"devDependencies": {
"jsr": "^0.13.2",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "3.3.3"
},
"dependencies": {
"dayjs": "1.11.13"
},
"jest": {
"testRegex": ".test.ts",
"verbose": true,
"coverageReporters": [
"json",
"html"
]
},
"packageManager": "yarn@1.22.22"
}