@hg8496/definitions
Version:
ProtoBuf definitions an JS lib
54 lines (53 loc) • 1.46 kB
JSON
{
"author": "Christian Stolz <hg8496@cstolz.de>",
"name": "@hg8496/definitions",
"version": "2.0.3",
"description": "ProtoBuf definitions an JS lib",
"homepage": "https://github.com/hg8496/definitions",
"bugs": "https://github.com/hg8496/definitions/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/hg8496/definitions.git"
},
"keywords": [
"janitza",
"umg",
"protobuf",
"typescript"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A protobuf",
"postversion": "git push && git push --tags",
"build": "mkdir -p lib && npm run buildjs && npm run buildts",
"buildts": "cd lib && pbts -o index.d.ts index.js",
"buildjs": "pbjs -t static-module -w commonjs -o lib/index.js protobuf/*.proto",
"test": "jest --coverage --config jestconfig.json",
"coveralls": "jest --config jestconfig.json --coverage --coverageReporters=text-lcov | coveralls"
},
"engines": {
"node": ">= 8.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/temp": "^0.8.34",
"coveralls": "^3.1.0",
"jest": "^26.1.0",
"temp": "^0.9.4",
"ts-jest": "^26.1.1"
},
"dependencies": {
"protobufjs": "~6.9.0",
"typescript": "^3.9.6"
}
}