package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@joystream/content-metadata-protobuf",
  3. "version": "1.0.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. },
  20. "files": [
  21. "lib/**/*",
  22. "doc/**",
  23. "proto/**",
  24. "compiled/**/*",
  25. "README.md"
  26. ],
  27. "dependencies": {
  28. "google-protobuf": "^3.14.0"
  29. },
  30. "devDependencies": {
  31. "@types/chai": "^4.2.11",
  32. "@types/mocha": "^8.2.0",
  33. "chai": "^4.2.0",
  34. "eslint": "^7.6.0",
  35. "mocha": "^8.2.1",
  36. "prettier": "2.0.2",
  37. "ts-node": "^8.8.1",
  38. "ts-protoc-gen": "^0.14.0",
  39. "typescript": "^4.1.3"
  40. }
  41. }