-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 864 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
35
36
{
"name": "grpcwebtext-parser",
"author": {
"name": "tdotcode",
"email": "[email protected]",
"url": "https://todotcode.com"
},
"homepage": "https://github.com/floydjones1/grpcwebtext-parser#grpcwebtext-parse",
"scripts": {
"start": "node ./dist",
"dev": "ts-node index.ts",
"prepublishOnly": "yarn build",
"build": "rm dist/* && tsc -p tsconfig.json",
"postpublish": "./postdeploy.sh"
},
"main": "./dist/index.js",
"bin": "./dist/index.js",
"version": "1.0.7",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.1",
"minimist": "^1.2.5",
"which": "^2.0.2"
},
"keywords": [
"grpcwebtext",
"decoder"
],
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^16.3.3",
"@types/which": "^2.0.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}