Files
2020-05-13 16:49:29 -05:00

39 lines
963 B
JSON

{
"name": "sliver-script",
"version": "1.0.5",
"description": "TypeScript/JavaScript Sliver client library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "./protobuf.sh && cp -r ./src/pb ./lib/pb && tsc",
"test": "jest --config jestconfig.json"
},
"prepublishOnly": "npm test && npm run lint",
"files": [
"lib/**/*"
],
"keywords": [],
"author": "moloch",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/moloch--/sliver-script"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"grpc-tools": "^1.8.1",
"jest": "^25.5.4",
"ts-jest": "^25.4.0",
"ts-protoc-gen": "^0.12.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.0.3",
"@improbable-eng/grpc-web": "^0.12.0",
"@types/google-protobuf": "^3.7.2",
"google-protobuf": "^3.11.4",
"protobufjs": "^6.9.0",
"rxjs": "^6.5.5"
}
}