-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.15 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
{
"name": "@discoveryjs/cli",
"version": "2.13.1",
"description": "CLI tools to serve & build projects based on Discovery.js",
"author": "Roman Dvornov <[email protected]> (https://github.com/lahmatiy)",
"license": "MIT",
"repository": "discoveryjs/discovery-cli",
"keywords": [
"cli",
"discovery",
"serve",
"server",
"build",
"builder"
],
"bin": {
"discovery": "./bin/serve",
"discovery-build": "./bin/build"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint bin/* lib",
"test": "mocha test"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@discoveryjs/discovery": "^1.0.0-beta.74"
},
"dependencies": {
"@discoveryjs/json-ext": "^0.6.3",
"archiver": "^5.3.1",
"chalk": "^4.1.2",
"clap": "^3.1.1",
"cors": "^2.8.5",
"cron-parser": "^4.9.0",
"cron-validator": "^1.3.1",
"cronstrue": "^2.51.0",
"esbuild": "^0.24.0",
"express": "^4.21.1",
"mime": "^3.0.0",
"parse-duration": "^1.1.0",
"pretty-ms": "^7.0.0"
},
"devDependencies": {
"eslint": "^8.29.0",
"mocha": "^10.8.2"
},
"files": [
"bin",
"lib"
]
}