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 11
/
package.json
78 lines (78 loc) · 2.24 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
{
"name": "@mockoon/commons-server",
"description": "Mockoon's commons server library. Used in Mockoon desktop application and CLI.",
"version": "2.16.4",
"author": {
"name": "Guillaume Monnet",
"email": "hi@255kb.dev",
"url": "https://255kb.dev/"
},
"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-cjs.json --timeout 10000 --forbid-only \"./test/suites/**/*.spec.ts\"",
"build": "tsc -p tsconfig-build.json && tsc -p tsconfig-build-cjs.json"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/*"
],
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 80,
"trailingComma": "none"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mockoon/commons-server.git"
},
"homepage": "https://github.com/mockoon/commons-server#readme",
"funding": "https://mockoon.com/sponsor-us/",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@apidevtools/swagger-parser": "10.0.3",
"@faker-js/faker": "5.5.3",
"@mockoon/commons": "2.9.1",
"bson-objectid": "2.0.1",
"cookie-parser": "1.4.6",
"date-fns": "2.26.0",
"express": "4.17.1",
"handlebars": "4.7.7",
"http-proxy-middleware": "2.0.1",
"killable": "1.0.1",
"mime-types": "2.1.34",
"object-path": "0.11.8",
"qs": "6.10.1",
"typed-emitter": "1.4.0",
"uuid": "8.3.2",
"xml-js": "1.6.11"
},
"devDependencies": {
"@types/chai": "4.2.22",
"@types/cookie-parser": "1.4.2",
"@types/express": "4.17.13",
"@types/faker": "5.5.9",
"@types/mime-types": "2.1.1",
"@types/mocha": "9.0.0",
"@types/node": "16.11.9",
"@types/object-path": "0.11.1",
"@types/qs": "6.9.7",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"chai": "4.3.4",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsdoc": "37.0.3",
"mocha": "9.1.3",
"openapi-types": "10.0.0",
"prettier": "2.4.1",
"prettier-plugin-organize-imports": "2.3.4",
"ts-mocha": "8.0.0",
"typescript": "4.5.2"
}
}