-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 897 Bytes
/
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
{
"name": "protoc-gen-jsonpb-ts",
"version": "0.1.9",
"description": "protoc plugin for typescript using json format",
"main": "index.js",
"types": "lib/lib.d.ts",
"bin": {
"protoc-gen-jsonpb-ts": "./bin/protoc-gen-jsonpb-ts"
},
"scripts": {
"clean": "rm -rf ./lib",
"test": "echo \"Error: no test specified\" && exit 1",
"test:example": "./example.sh",
"build": "npm run clean && ./node_modules/.bin/tsc",
"patch": "npm run build && npm version patch && npm publish"
},
"author": {
"name": "sue71",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/ejs": "3.0.2",
"@types/google-protobuf": "3.7.2",
"@types/node": "10.17.18",
"@types/prettier": "2.0.0",
"typescript": "3.8.3"
},
"dependencies": {
"google-protobuf": "^3.6.1",
"ejs": "^3.0.0",
"prettier": "^2.0.0"
}
}