-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 984 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
37
38
39
40
41
42
43
{
"name": "minipbjs",
"version": "0.4.4",
"description": "minimizes javascript created by pbjs for code size reduction",
"main": "cli/index.js",
"bin": {
"minipbjs": "bin/minipbjs"
},
"scripts": {
"test": "tsc --build && tape 'tests/**/test.js'",
"build": "tsc --build",
"prepublishOnly": "tsc --build && chmod +x bin/minipbjs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mustime/minipbjs.git"
},
"keywords": [
"protobuf",
"protobuf.js",
"pbjs",
"minify",
"minimize"
],
"author": {
"name": "Irvin Pang",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mustime/minipbjs/issues"
},
"homepage": "https://github.com/mustime/minipbjs#readme",
"dependencies": {
"protobufjs": "^6.11.2",
"uglify-js": "^3.13.6"
},
"devDependencies": {
"@types/node": "^15.3.0",
"tape": "^5.2.2",
"typescript": "^4.7.4"
}
}