-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "proveit",
"version": "0.1.0",
"description": "Adds additional assertions and type checkers to Node.js projects.",
"type": "module",
"packageManager": "[email protected]",
"keywords": [
"assert",
"assertions",
"type",
"type-check"
],
"homepage": "https://github.com/targendaz2/proveit#readme",
"bugs": {
"url": "https://github.com/targendaz2/proveit/issues"
},
"license": "MIT",
"files": [
"dist/"
],
"author": "David G Rosenberg <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "dist"
},
"repository": "github:targendaz2/proveit",
"scripts": {
"build": "rm -rf dist && tsc --build",
"prepack": "yarn build",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" NODE_NO_WARNINGS=1 jest --passWithNoTests"
},
"dependencies": {
"error-wave": "^0.1.0"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@jest/globals": "^29.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node22": "^22.0.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.2",
"@types/tmp": "^0.2.6",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"tmp": "^0.2.3",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"engines": {
"node": "^22.0.0"
}
}