-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.41 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
55
56
{
"name": "mock-pb-cli",
"version": "v1.1.2",
"scripts": {
"c": "tsc",
"serve": "ts-node src/index.ts",
"dev": "ts-node-dev src/index.ts",
"test": "jest",
"cover": "jest --coverage"
},
"main": "src/index.ts",
"bin": {
"mock-pb": "bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JasonkayZK/mock-protobuf.js"
},
"author": "JasonkayZK <[email protected]>",
"license": "MIT",
"description": "A cli to mock json output from protobuf.",
"keywords": [
"mock",
"protobuf",
"cli"
],
"files": [
"bin",
"README.md"
],
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^24.0.13",
"@types/mockjs": "^1.0.6",
"@types/node": "^14.18.10",
"@types/restify": "^8.5.5",
"@types/shelljs": "^0.8.11",
"@types/supertest": "^2.0.7",
"jest": "^24.8.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"ts-node-dev": "^2.0.0-0",
"tslint": "^5.17.0",
"typescript": "^4.8.2"
},
"dependencies": {
"commander": "^9.4.0",
"fs-extra": "^9.0.13",
"globby": "^11.0.0",
"mockjs": "^1.1.0",
"protobufjs": "^7.1.0",
"restify": "^v11.1.0",
"shelljs": "^0.8.5"
}
}