-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 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
{
"name": "@softinstigate/rh",
"version": "0.6.0",
"engines": {
"node": ">=18.0.0"
},
"main": "rh.js",
"type": "module",
"bin": {
"rh": "rh.js"
},
"scripts": {
"start": "node rh.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run"
},
"keywords": [
"restheart",
"cli",
"rest",
"mongodb",
"nosql",
"json",
"http"
],
"author": "Maurizio Turatti <maurizio@softinstigate.com>",
"license": "MIT",
"description": "A command line interface to manage RESTHeart instances",
"dependencies": {
"chokidar": "^3.6.0",
"js-yaml": "^4.1.1",
"ora": "^8.0.1",
"ps-list": "^8.1.1",
"shelljs": "^0.8.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.7.0",
"prettier": "3.3.2",
"vitest": "^4.0.18"
}
}