-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "such-cli",
"description": "Run a local mock server & Generate fake data & Initialize suchjs in command line.",
"version": "0.5.0",
"author": "[email protected]",
"bin": {
"such": "bin/such.js"
},
"keywords": [
"mock",
"server",
"cli",
"fake",
"data"
],
"scripts": {
"lint": "npx eslint --ext .js lib/",
"prepublish": "npm run lint",
"pkg": "rm -rf dist/* && pkg . && mv dist/such-cli dist/such && tar -zcvf dist/such-$npm_package_version.tar.gz dist/such"
},
"pkg": {
"scripts": "bin/**/*",
"targets": [
"node16-macos-x64"
],
"outputPath": "dist"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cli-spinners": "^2.6.1",
"co-body": "^6.1.0",
"commander": "^8.3.0",
"inquirer": "^8.2.0",
"multiparty": "^4.2.3",
"suchjs": "^3.1.1",
"type-is": "^1.6.18"
},
"devDependencies": {
"eslint": "^8.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/suchjs/such-cli"
},
"bugs": {
"url": "https://github.com/suchjs/such-cli/issues"
},
"license": "MIT"
}