forked from joticajulian/koinos-abi-proto-gen
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1006 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
{
"name": "@koinos/abi-proto-gen",
"version": "1.0.2",
"license": "MIT",
"main": "lib/index.js",
"author": "Koinos Group <contact@koinos.group>",
"repository": "https://github.com/koinos/koinos-abi-proto-gen",
"tags": [
"protobuf",
"proto",
"abi",
"koinos",
"generator"
],
"files": [
"lib"
],
"bin": {
"koinos-abi-proto-gen": "bin/koinos-abi-proto-gen"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.5",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"rimraf": "^5.0.5",
"typescript": "^4.5.5"
},
"dependencies": {
"google-protobuf": "^3.21.2",
"protobufjs": "^7.2.5",
"protobufjs-cli": "^1.1.2"
},
"scripts": {
"test": "echo 'no tests yet'",
"lint": "eslint --max-warnings 0 --ext ts \"src/**/*.ts\"",
"build": "rimraf lib && yarn run lint && tsc",
"prepublishOnly": "yarn run build"
}
}