-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "metadomain",
"version": "2.0.0-alpha.2",
"author": "Timur Shemsedinov <[email protected]>",
"license": "MIT",
"description": "Metarhia core model: database schemas",
"keywords": [
"metarhia",
"model",
"schema",
"domain",
"metamodel",
"metaschma",
"database"
],
"main": "metadomain.js",
"files": [
"schemas/"
],
"engines": {
"node": "18 || 20 || 21 || 22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/metadomain.git"
},
"bugs": {
"url": "https://github.com/metarhia/metadomain/issues",
"email": "[email protected]"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"scripts": {
"test": "npm run lint && metatests test/",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
},
"dependencies": {
"metaschema": "^2.2.1"
},
"devDependencies": {
"@types/node": "^22.5.1",
"eslint": "^9.9.1",
"eslint-config-metarhia": "^9.0.5",
"metatests": "^0.9.0",
"prettier": "^3.3.3"
}
}