forked from helium/proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 876 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": "@helium/proto",
"version": "1.6.0",
"description": "Helium protobuf definitions compiled to JS with TypeScript types",
"main": "build/index.js",
"repository": "[email protected]:helium/proto.git",
"contributors": [
"Andrew Allen <[email protected]>"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"scripts": {
"clean": "rimraf build",
"setup": "mkdirp build",
"compile": "pbjs -w commonjs -t static-module -o build/index.js src/*.proto",
"types": "pbts -o build/index.d.ts build/index.js",
"build": "yarn clean && yarn setup && yarn compile && yarn types",
"test": "jest"
},
"dependencies": {
"protobufjs": "^6.11.3"
},
"devDependencies": {
"jest": "^25.4.0",
"mkdirp": "^1.0.4",
"node-notifier": "^10.0.1",
"rimraf": "^3.0.2"
}
}