-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 961 Bytes
/
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
{
"name": "typescript-interface-generator",
"version": "0.0.6",
"description": "type generator",
"main": "./dist/index.js",
"scripts": {
"start": "node dist/index.js",
"example": "node example/example.js",
"test": "npx mocha test",
"build": "npx typescript --declaration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richie-south/typescript-type-generator.git"
},
"keywords": [
"typescript",
"type",
"interface",
"generator",
"object"
],
"author": "richard soderman",
"license": "ISC",
"bugs": {
"url": "https://github.com/richie-south/typescript-type-generator/issues"
},
"homepage": "https://github.com/richie-south/typescript-type-generator#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"eslint": "^5.8.0",
"mocha": "^5.2.0",
"typescript": "^3.1.5"
},
"dependencies": {
"ts-simple-ast": "^18.0.0"
}
}