-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.2 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
{
"name": "typit",
"version": "0.6.5",
"description": "Fully recursive runtime type checking.",
"type": "module",
"exports": {
".": "./js/main.js"
},
"typesVersions": {
".": ["./.d.ts/main.d.ts"]
},
"engines": {
"node": ">=14.16"
},
"main": "js/main",
"types": ".d.ts/main",
"scripts": {
"build": "gulp rebuild",
"test": "gulp rebuild && jest",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/T99/typit.git"
},
"keywords": [
"runtime",
"types",
"typed",
"typing",
"typechecking"
],
"author": "Trevor Sears <[email protected]> (https://trevorsears.com/)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/T99/typit/issues"
},
"homepage": "https://github.com/T99/typit#readme",
"dependencies": {
"iter-over": "^1.5.1",
"merj": "^0.3.0"
},
"devDependencies": {
"@t99/eslint-config": "latest",
"@types/jest": "latest",
"del": "latest",
"gulp": "latest",
"gulp-sourcemaps": "latest",
"gulp-typescript": "latest",
"gulp-terser": "latest",
"jest": "latest",
"ts-jest": "latest",
"typescript": "latest"
}
}