package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@joystream/content-metadata-protobuf",
  3. "version": "1.1.0",
  4. "description": "Joystream Content 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": "./compile.sh && 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. "prepublish": "yarn build"
  20. },
  21. "files": [
  22. "lib/**/*",
  23. "doc/**",
  24. "proto/**",
  25. "compiled/**/*",
  26. "README.md"
  27. ],
  28. "dependencies": {
  29. "google-protobuf": "^3.14.0"
  30. },
  31. "devDependencies": {
  32. "@types/chai": "^4.2.11",
  33. "@types/mocha": "^8.2.0",
  34. "chai": "^4.2.0",
  35. "eslint": "^7.6.0",
  36. "mocha": "^8.2.1",
  37. "prettier": "2.0.2",
  38. "ts-node": "^8.8.1",
  39. "ts-protoc-gen": "^0.14.0",
  40. "typescript": "^4.1.3"
  41. },
  42. "publishConfig": {
  43. "access": "public",
  44. "registry": "https://registry.npmjs.org"
  45. }
  46. }