-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.98 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.98 KB
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
{
"name": "meta-system",
"version": "0.4.11",
"description": "The *Everything* framework for efficient developers",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"type": "module",
"scripts": {
"rebuild-install": "npm remove -g && npm run build && npm install -g",
"build": "npm ci && npx tsc -p tsconfig.build.json",
"test": "mocha --exit --sort",
"lint": "eslint --max-warnings 0 './*{(test),(src)}/**/*.{ts,js}'",
"dev": "tsx watch ./src/bin/index.ts"
},
"bin": {
"meta-system": "./dist/src/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapikit/meta-system.git"
},
"keywords": [
"configuration",
"low-code",
"service",
"api",
"backend",
"engine",
"framework"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapikit/meta-system/issues"
},
"dependencies": {
"@meta-system/object-definition": "^2.0.2",
"chalk": "^5.3.0",
"ci": "^2.3.0",
"commander": "^10.0.1",
"decimal.js": "^10.4.3",
"deep-object-diff": "^1.1.9",
"flat": "^6.0.1",
"glob": "^10.4.1",
"just-clone": "^6.2.0",
"mersenne-twister": "^1.1.0",
"nanoid": "^5.0.7",
"nethere": "^0.1.4",
"strip-ansi": "^7.1.0"
},
"homepage": "https://github.com/mapikit/meta-system#readme",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/chai": "^4.3.16",
"@types/download": "^8.0.5",
"@types/glob": "^8.1.0",
"@types/mersenne-twister": "^1.1.7",
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.34",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"axios": "^1.7.2",
"chai": "^4.4.1",
"chai-http": "^4.4.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.4.0",
"mongodb-memory-server": "^8.16.0",
"ts-node": "^10.9.2",
"tsx": "^4.15.5",
"typescript": "^5.4.5"
}
}