package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 && yarn build:ts",
  13. "build:ts": "tsc",
  14. "compile": "./compile.sh",
  15. "generate-doc": "./generate-md-doc.sh",
  16. "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'",
  17. "lint": "eslint ./src --ext .ts",
  18. "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
  19. "format": "prettier ./ --write",
  20. "prepublish": "yarn build"
  21. },
  22. "files": [
  23. "lib/**/*",
  24. "doc/**",
  25. "proto/**",
  26. "compiled/**/*",
  27. "README.md"
  28. ],
  29. "dependencies": {
  30. "google-protobuf": "^3.14.0"
  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. "ts-protoc-gen": "^0.14.0",
  41. "typescript": "^4.1.3"
  42. },
  43. "publishConfig": {
  44. "access": "public",
  45. "registry": "https://registry.npmjs.org"
  46. }
  47. }