-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1013 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1013 Bytes
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
{
"name": "postgres-iots-codegen",
"version": "0.4.0",
"description": "Generates io-ts contracts from postgresql database schema.",
"bin": {
"pgiotsgen": "./bin/pgiotsgen.js"
},
"scripts": {
"lint": "eslint lib bin",
"test": "exit 0",
"prepublish": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pldin601/postgres-iots-codegen.git"
},
"keywords": [],
"author": "Roman Lakhtadyr <roman.lakhtadyr@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pldin601/postgres-iots-codegen/issues"
},
"homepage": "https://github.com/pldin601/postgres-iots-codegen#readme",
"dependencies": {
"docopt": "^0.6.2",
"knex": "^0.20.14",
"lodash": "^4.17.11",
"pg": "^8.2.1",
"shelljs": "^0.8.3",
"ts-morph": "^7.0.2"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.15.3"
}
}