-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.69 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
{
"name": "ts-runtime-checks",
"version": "0.6.2",
"description": "A typescript transformer which automatically generates validation code from your types.",
"main": "dist/index.js",
"scripts": {
"test": "tsc && cd ./tests && tspc && mocha dist/integrated/**/*.js && node ./dist/snapshots/index",
"ci": "cd ./tests && tspc && mocha dist/integrated/**/*.js && node ./dist/snapshots/index force",
"build": "tsc",
"lint": "npx eslint",
"mtest": "tsc && cd ./manualTests && tspc",
"playground": "tsc && cd ./docs && npm run dev",
"mitata": "tsc && cd ./perf && tspc && node ./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleFeud/ts-runtime-checks.git"
},
"keywords": [
"typescript",
"typecheck",
"runtime",
"check"
],
"author": "GoogleFeud",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoogleFeud/ts-runtime-checks/issues"
},
"homepage": "https://github.com/GoogleFeud/ts-runtime-checks#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/diff": "^5.0.2",
"@types/mocha": "^9.1.0",
"@types/node": "^22.5.5",
"@types/ts-expose-internals": "npm:ts-expose-internals@^5.6.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.3.6",
"diff": "^5.0.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.1.0",
"mitata": "^0.1.6",
"mocha": "^9.2.2",
"prettier": "^3.2.5",
"ts-patch": "^3.2.1",
"typescript": "^5.6.2"
}
}