forked from emilioastarita/typed-rows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 971 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
40
41
42
43
44
{
"name": "typed-rows",
"version": "0.2.0",
"description": "Extract metadata from mysql tables to produce typescript interfaces for rows results.",
"main": "dist/index.js",
"scripts": {
"watch": "tsc -w",
"test": "mocha -r ts-node/register ./src/test/*Test.ts"
},
"keywords": [
"metadata",
"mysql",
"interfaces",
"typescript",
"types",
"schema",
"db"
],
"author": "Emilio Astarita",
"license": "ISC",
"bin": {
"typed-rows": "js/index.js"
},
"dependencies": {
"async": "^2.0.0-rc.6",
"commander": "^2.9.0",
"lodash": "^4.17.5",
"mysql": "^2.11.1",
"prompt": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.2",
"chai": "^4.1.2",
"mocha": "^5.0.5",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
},
"repository": {
"type": "git",
"url": "[email protected]:emilioastarita/typed-rows.git"
}
}