forked from SweetIQ/schemats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "schemats",
"version": "3.0.3",
"description": "Generate typescript interface definitions from (postgres) SQL database schema",
"keywords": [
"postgres",
"schema",
"typescript",
"sql"
],
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json --type-check 'src/**/*.ts' 'test/**/*.test.ts' 'bin/**/*.ts' --exclude '**/*.d.ts'",
"build": "tsc",
"dependency-check": "dependency-check . --entry bin/schemats.js --missing --no-dev",
"test": "npm run lint && npm run build && npm run dependency-check && mocha",
"prepublish": "npm run build",
"clean": "del-cli node_modules **/*.js",
"coverage": "npm run lint && npm run build && npm run dependency-check && nyc mocha",
"coverage:ci": "npm run lint && npm run build && npm run dependency-check && nyc mocha && nyc report --reporter=text-lcov | coveralls"
},
"bin": {
"schemats": "bin/schemats.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sweetiq/schemats.git"
},
"bugs": {
"url": "https://github.com/sweetiq/schemats/issues"
},
"author": "Mengxuan Xia <[email protected]>",
"contributors": [
"Arnaud Benhamdine <[email protected]>",
"zigomir <[email protected]>",
"Mark Crisp <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@types/bluebird": "^3.0.35",
"@types/diff": "^3.2.0",
"@types/lodash": "^4.14.37",
"@types/mocha": "^2.2.39",
"@types/mysql": "0.0.33",
"@types/mz": "^0.0.31",
"@types/node": "^6.0.77",
"@types/power-assert": "^1.4.29",
"@types/proxyquire": "^1.3.27",
"@types/sinon": "^2.1.2",
"@types/yargs": "^6.3.3",
"coveralls": "^2.11.15",
"del-cli": "^0.2.0",
"dependency-check": "^2.6.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nyc": "^11.0.2",
"power-assert": "^1.4.2",
"proxyquire": "^1.7.11",
"sinon": "^2.1.0",
"source-map-support": "^0.4.15",
"ts-node": "^3.0.4",
"tslint": "^5.4.2",
"tslint-config-standard": "^5.0.2"
},
"dependencies": {
"bluebird": "^3.5.0",
"diff": "^3.2.0",
"lodash": "^4.17.4",
"mysql": "^2.13.0",
"mz": "^2.6.0",
"pg-promise": "^6.3.6",
"typescript": "^2.7.1",
"typescript-formatter": "^7.0.1",
"yargs": "^8.0.1"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"require": [
"ts-node/register"
]
}
}