forked from metarhia/metasql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "metasql",
"version": "3.0.0-alpha.1",
"description": "MetaSQL Database schema generator, migrations and query builder for Metarhia",
"main": "metasql.js",
"types": "metasql.d.ts",
"bin": {
"metasql": "bin/cli.js"
},
"files": [
"lib/",
"bin/",
"metasql.d.ts"
],
"scripts": {
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.yml\" \"**/*.ts\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/.*rc\" \"**/*.yml\" \"**/*.ts\"",
"types": "tsc -p tsconfig.json",
"test": "npm run lint && npm run types && metatests test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/metasql.git"
},
"keywords": [
"sql",
"metarhia",
"query builder",
"schema",
"migrations",
"database"
],
"author": "Timur Shemsedinov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/metarhia/metasql/issues"
},
"homepage": "https://github.com/metarhia/metasql#readme",
"engines": {
"node": "16 || 18 || 19 || 20"
},
"dependencies": {
"metadomain": "^2.0.0-alpha.1",
"metaschema": "^2.1.4",
"metavm": "^1.2.5",
"pg": "^8.11.1"
},
"devDependencies": {
"@types/node": "^20.4.1",
"@types/pg": "^8.10.2",
"eslint": "^8.44.0",
"eslint-config-metarhia": "^8.2.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"metatests": "^0.8.2",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}