-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "@winches/auto-mock",
"version": "0.1.2",
"description": "约定式路由的mock工具",
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/winchesHe/auto-mock"
},
"keywords": [
"mock",
"auto-import",
"Contractual routing",
"mock 工具",
"自动获取本地mock路径",
"约定式mock路由"
],
"main": "dist/app.js",
"directories": {
"test": "test"
},
"bin": {
"auto-mock": "dist/src/bin.js"
},
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"start": "node src/bin.js",
"dev": "node src/bin.js -w",
"build": "tsup-node",
"changlog": "npx conventional-changelog -p angular -i CHANGELOG.md -s --commit-path .",
"release": "bumpp --execute='npm run changlog' --all",
"prepublish": "npm run build"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@winches/utils": "^0.0.3",
"commander": "^10.0.0",
"execa": "^5.0.0",
"fastify": "^4.0.0",
"nodemon": "^2.0.20",
"pino-pretty": "^10.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.42.1",
"eslint": "^8.5.0",
"eslint-plugin-unused-imports": "^4.0.0",
"tap": "^16.1.0",
"tsup": "^6.6.3"
}
}