-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.78 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.78 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@r35007/mock-server",
"version": "19.1.0",
"description": "Customize Your Own Local Mock Server",
"bin": {
"mock-server": "dist/cli/index.js",
"mock-server-init": "dist/cli/index.js --init"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"mock-server": "node dist/cli/index.js",
"lint": "eslint --report-unused-disable-directives --max-warnings 0 .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --loglevel silent --ignore-unknown --find-config-path --check .",
"format:fix": "prettier --loglevel silent --ignore-unknown --find-config-path --write .",
"lint:ts": "tsc --noEmit",
"build": "rimraf dist && tsc --build",
"compile": "rimraf dist && tsc --build tsconfig.test.json",
"clean": "rimraf node_modules package-lock.json coverage dist",
"test": "jest --collectCoverage --collectCoverageFrom=src/**/*.ts --silent --runInBand --verbose --no-cache"
},
"files": [
"dist",
"public",
"samples",
"!public/_assets/css/**.scss",
"public/_assets/css/**.min.css",
"!public/_assets/js/**.js",
"public/_assets/js/**.min.js"
],
"engines": {
"node": ">=12"
},
"keywords": [
"JSON",
"REST",
"API",
"prototyping",
"mock",
"mocking",
"test",
"testing",
"rest",
"data",
"dummy",
"sandbox",
"server",
"fake",
"response",
"db",
"local"
],
"repository": {
"type": "git",
"url": "https://github.com/R35007/Mock-Server"
},
"homepage": "https://r35007.github.io/Mock-Server/",
"author": {
"name": "Sivaraman",
"email": "sendmsg2siva@gmail.com"
},
"license": "MIT",
"dependencies": {
"axios": "^1.3.2",
"chalk": "^4.1.0",
"chokidar": "^3.5.3",
"comment-json": "^4.2.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cosmiconfig": "^8.1.3",
"express": "^4.18.2",
"express-urlrewrite": "^1.4.0",
"fs-extra": "^11.1.1",
"ip": "^1.1.5",
"json5": "^2.2.3",
"jsonc-require": "^1.0.1",
"lodash": "^4.17.21",
"lodash-id": "^0.14.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"nanoid": "^3.1.23",
"ora": "^5.4.1",
"path-to-regexp": "^6.2.1",
"please-upgrade-node": "^3.2.0",
"response-time": "^2.3.2",
"server-destroy": "^1.0.1",
"update-notifier-cjs": "^5.1.6",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/chokidar": "^2.1.3",
"@types/comment-json": "^2.4.2",
"@types/compression": "^1.7.1",
"@types/errorhandler": "^1.5.0",
"@types/express": "^4.17.11",
"@types/express-urlrewrite": "^1.3.0",
"@types/fs-extra": "^11.0.1",
"@types/ip": "^1.1.0",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.191",
"@types/method-override": "0.0.32",
"@types/morgan": "^1.9.3",
"@types/nanoid": "^3.0.0",
"@types/node": "^17.0.45",
"@types/ora": "^3.2.0",
"@types/path-to-regexp": "^1.7.0",
"@types/server-destroy": "^1.0.1",
"@types/supertest": "^2.0.12",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-define-config": "^1.20.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^2.8.8",
"supertest": "^6.2.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
}
}