-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "ts-expose-internals",
"private": true,
"description": "Augment the TypeScript compiler module's types to expose hidden internal types",
"version": "0.0.0-development",
"license": "MIT",
"types": "index.d.ts",
"scripts": {
"test": "jest --runInBand",
"test:with_live": "npx cross-env LIVE_TEST=true jest --runInBand",
"compile": "tsc",
"-----------------": "-----------------",
"run": "ts-node -T -P tsconfig.json ./src/main.ts"
},
"author": {
"name": "Ron Spickenagel",
"url": "https://twitter.com/ron"
},
"repository": {
"type": "git",
"url": "[email protected]:nonara/ts-expose-internals.git"
},
"files": [
"index.d.ts",
"README.md",
"typescript.d.ts"
],
"keywords": [
"typescript",
"internal types",
"internals",
"byots",
"types"
],
"engines": {
"node": ">=10.x"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^14.0.25",
"@types/semver": "^7.5.0",
"jest": "^29.5.0",
"semver": "^7.5.2",
"ts-jest": "^29.1.0",
"ts-node": "^8.10.2",
"typescript": "^5.1.3",
"cross-env": "^7.0.3",
"rimraf" : "^5.0.1"
}
}