-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
64 lines (64 loc) · 1.51 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
59
60
61
62
63
64
{
"name": "ts-interface-builder",
"version": "0.3.3",
"description": "Compile TypeScript interfaces into a description that allows runtime validation",
"main": "dist/index",
"typings": "dist/index",
"bin": {
"ts-interface-builder": "bin/ts-interface-builder"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test-only": "mocha 'test/*.ts'",
"test": "npm run build && npm run test-only",
"prepack": "npm run test"
},
"keywords": [
"typescript",
"ts",
"interface",
"type",
"validate",
"validator",
"check",
"babel-plugin-macros"
],
"author": "Dmitry S, Grist Labs",
"contributors": [
"Matthew Francis Brunetti <[email protected]> (https://github.com/zenflow)"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/gristlabs/ts-interface-builder"
},
"bugs": {
"url": "https://github.com/gristlabs/ts-interface-builder/issues"
},
"files": [
"dist",
"bin",
"macro.js",
"macro.d.ts"
],
"dependencies": {
"commander": "^2.12.2",
"fs-extra": "^4.0.3",
"typescript": "^3.0.0",
"glob": "^7.1.6"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@types/babel-plugin-macros": "^2.8.2",
"@types/fs-extra": "^4.0.5",
"@types/glob": "^7.1.3",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.66",
"babel-plugin-macros": "^2.8.0",
"fs-extra": "^4.0.3",
"mocha": "^6.2.0",
"ts-interface-checker": "^1.0.0",
"ts-node": "^4.0.1"
}
}