forked from gristlabs/ts-interface-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 KB
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
{
"name": "ts-interface-builder",
"version": "0.2.2",
"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": "tsc && mocha 'test/*.ts'",
"prepack": "npm run test"
},
"keywords": [
"typescript",
"ts",
"interface",
"type",
"validate",
"validator",
"check"
],
"author": "Dmitry S, Grist Labs",
"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"
],
"dependencies": {
"commander": "^2.12.2",
"fs-extra": "^4.0.3",
"typescript": "^3.0.0"
},
"devDependencies": {
"@types/fs-extra": "^4.0.5",
"@types/mocha": "^5.2.7",
"@types/node": "^8.0.57",
"fs-extra": "^4.0.3",
"mocha": "^6.2.0",
"ts-node": "^4.0.1"
}
}