-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "proto-mock",
"version": "1.2.0",
"description": "根据proto文件定义,mock对应的json数据",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "tsc --build --clean",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sullay/proto-mock.git"
},
"author": "sullay",
"license": "ISC",
"bugs": {
"url": "https://github.com/sullay/proto-mock/issues"
},
"homepage": "https://github.com/sullay/proto-mock#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"proto-mock": "^0.4.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"mockjs": "^1.1.0",
"protobufjs": "^7.2.3",
"protobufjs-cli": "^1.1.1"
},
"files": [
"index.js",
"index.d.ts",
"utils"
]
}