This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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-transform-runtime-check",
"version": "0.0.1-alpha22",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"readme": "readme.md",
"license": "MIT",
"keywords": [
"typescript",
"typescript-transform",
"ts-transform",
"ts-transformer",
"ts-compiler-api",
"runtime",
"typecheck"
],
"description": "Typescript AST transformer to generate type checks at compile time",
"scripts": {
"build": "ttsc",
"lint": "eslint . --ext .ts",
"test": "mocha --timeout 0 -r tsconfig-paths/register",
"bin:transform": "./node_modules/.bin/ts-node -C ttypescript -r tsconfig-paths/register ./bin/transform.ts"
},
"author": "Kevin Ramharak <[email protected]>",
"repository": {
"type": "git",
"url": "https://https://github.com/kevinramharak/ts-transform-runtime-check.git"
},
"ts-node": {
"compiler": "ttypescript"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@typescript/vfs": "^1.3.4",
"@zerollup/ts-transform-paths": "^1.7.18",
"chai": "^4.2.0",
"eslint": "^7.21.0",
"mocha": "^8.2.1",
"ts-expose-internals": "^4.1.3",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.15",
"typescript": "^4.2.3"
}
}