This repository has been archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.51 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
{
"name": "mockoon-cli",
"version": "1.0.0",
"description": "A mockoon cli wrapper",
"main": "Main.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node ./bin/Main.js",
"debug": "npm run build && node --inspect-brk ./bin/Main.js",
"package": "npm run package-mac && npm run package-win && npm run package-lin",
"package-mac": "npm run build && npx pkg --target node13-mac-x64 ./bin/Main.js -o ./packages/mac/mockoon-cli",
"package-win": "npm run build && npx pkg --target node13-win-x64 ./bin/Main.js -o ./packages/win/mockoon-cli.exe",
"package-lin": "npm run build && npx pkg --target node13-linux-x64 ./bin/Main.js -o ./packages/lin/mockoon-cli"
},
"author": "Maurice Ackel",
"license": "MIT",
"dependencies": {
"btoa": "^1.2.1",
"cookie-parser": "1.4.5",
"date-fns": "^2.10.0",
"dummy-json": "git+https://git@github.com/Maurice22/dummy-json.git",
"express": "4.17.1",
"faker": "^5.1.0",
"http-proxy-middleware": "0.20.0",
"killable": "1.0.1",
"lodash": "^4.17.19",
"mime-types": "2.1.24",
"object-path": "0.11.4",
"qs": "6.9.3",
"querystring": "^0.2.0",
"request": "2.88.0",
"rxjs": "^6.5.4",
"semver": "6.3.0",
"uuid": "3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/lodash": "^4.14.149",
"@types/mime-types": "^2.1.0",
"@types/object-path": "^0.11.0",
"@types/uuid": "^7.0.0",
"@types/cookie-parser": "1.4.2",
"pkg": "^4.4.8",
"typescript": "^3.8.3"
}
}