-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"name": "microql",
"version": "0.6.6",
"description": "A query language for composing microservices.",
"type": "module",
"main": "query.js",
"scripts": {
"test": "node --test test/*.test.js",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix ."
},
"simple-git-hooks": {
"pre-commit": "./scripts/pre-commit-lint.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TorchlightSoftware/microql.git"
},
"keywords": [
"micro",
"service",
"microservice",
"json",
"query",
"dsl",
"async",
"distributed",
"orchestrator",
"orchestration",
"coordination",
"composition"
],
"author": "q@bitmage.net",
"license": "MIT",
"bugs": {
"url": "https://github.com/TorchlightSoftware/microql/issues"
},
"homepage": "https://github.com/TorchlightSoftware/microql#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^5.2.0",
"eslint": "^9.31.0",
"simple-git-hooks": "^2.13.0"
},
"dependencies": {
"fs-extra": "^11.3.0",
"lodash": "^4.17.10",
"lodash-deep": "^2.0.0",
"zod": "^4.0.5"
}
}