-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 843 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
{
"name": "debug-assert",
"version": "0.0.0",
"description": "Helps your app meet fail-fast/fail-safe principles",
"exports": "./dist/index.js",
"type": "module",
"scripts": {
"prepare": "npm run src:build",
"build": "pnpm src:build",
"jest": "jest",
"test": "pnpm src:test",
"src:build": "tsc --build src && node tools/package.mjs",
"src:test": "NODE_OPTIONS=--experimental-vm-modules jest --projects src"
},
"author": "origin-yaropolk",
"license": "MIT",
"volta": {
"node": "20.18.0",
"pnpm": "9.13.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@tsconfig/node20": "^20.1.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.9.1",
"editorconfig-checker": "^6.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"win-node-env": "^0.6.1",
"yargs": "^17.7.2"
}
}