This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
99 lines (99 loc) · 2.59 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@mockoon/cli",
"description": "Mockoon's CLI. Deploy your mock APIs anywhere.",
"version": "1.6.0",
"author": {
"name": "Guillaume Monnet",
"email": "hi@255kb.dev",
"url": "https://255kb.dev/"
},
"bin": {
"mockoon-cli": "./bin/run"
},
"license": "MIT",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .js,.ts .",
"format": "prettier {src,test}/**/*.{ts,js,scss,html} --check",
"test": "ts-mocha -p ./tsconfig-build.json --timeout 40000 --forbid-only --file test/libs/setup.ts test/**/*.spec.ts",
"build": "rm -rf dist && tsc -p tsconfig-build.json && oclif-dev manifest"
},
"main": "./dist/index.js",
"files": [
"/dist",
"/bin",
"/oclif.manifest.json"
],
"oclif": {
"commands": "./dist/commands",
"hooks": {
"init": "./dist/hooks/init"
},
"bin": "mockoon-cli",
"plugins": [
"@oclif/plugin-help"
]
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80,
"trailingComma": "none"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mockoon/cli.git"
},
"bugs": {
"url": "https://github.com/mockoon/cli/issues"
},
"homepage": "https://github.com/mockoon/cli#readme",
"funding": "https://mockoon.com/sponsor-us/",
"dependencies": {
"@mockoon/commons": "2.9.1",
"@mockoon/commons-server": "2.16.3",
"@oclif/command": "1.8.4",
"@oclif/config": "1.17.1",
"@oclif/plugin-help": "3.2.7",
"axios": "0.24.0",
"cli-ux": "5.6.4",
"inquirer": "8.2.0",
"is-port-reachable": "3.0.0",
"jsonfile": "6.1.0",
"minimist": "1.2.5",
"mkdirp": "1.0.4",
"mustache": "4.2.0",
"pm2": "5.1.2",
"pretty-bytes": "5.6.0",
"tslib": "2.3.1",
"winston": "3.3.3"
},
"devDependencies": {
"@oclif/dev-cli": "1.26.3",
"@oclif/test": "1.2.8",
"@types/chai": "4.2.22",
"@types/inquirer": "8.1.3",
"@types/jsonfile": "6.0.1",
"@types/minimist": "1.2.2",
"@types/mkdirp": "1.0.2",
"@types/mocha": "9.0.0",
"@types/mustache": "4.1.2",
"@types/node": "16.11.10",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"chai": "4.3.4",
"eslint": "8.3.0",
"eslint-config-oclif": "4.0.0",
"eslint-config-oclif-typescript": "1.0.2",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsdoc": "37.0.3",
"mocha": "9.1.3",
"prettier": "2.4.1",
"prettier-plugin-organize-imports": "2.3.4",
"ts-mocha": "8.0.0",
"typescript": "4.5.2"
},
"engines": {
"node": ">=12.20.0"
},
"types": "dist/index.d.ts"
}