package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@joystream/metadata-protobuf",
  3. "version": "1.0.0",
  4. "description": "Joystream Metadata Protobuf Library ",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "repository": "https://github.com/joystream/joystream",
  8. "author": "Joystream Contributors",
  9. "license": "MIT",
  10. "private": false,
  11. "scripts": {
  12. "build": "tsc",
  13. "compile": "./compile.sh",
  14. "generate-doc": "./generate-md-doc.sh",
  15. "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'",
  16. "lint": "eslint ./src --ext .ts",
  17. "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
  18. "format": "prettier ./ --write"
  19. },
  20. "files": [
  21. "lib/**/*",
  22. "doc/**",
  23. "proto/**",
  24. "compiled/**/*",
  25. "README.md"
  26. ],
  27. "dependencies": {
  28. "google-protobuf": "^3.14.0",
  29. "long": "^4.0.0",
  30. "@types/long": "^4.0.1"
  31. },
  32. "devDependencies": {
  33. "@types/chai": "^4.2.11",
  34. "@types/mocha": "^8.2.0",
  35. "chai": "^4.2.0",
  36. "eslint": "^7.6.0",
  37. "mocha": "^8.2.1",
  38. "prettier": "2.0.2",
  39. "ts-node": "^8.8.1",
  40. "typescript": "^4.1.3",
  41. "protobufjs": "^6.10.2"
  42. }
  43. }