package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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": "tsc",
  13. "compile": "./compile.sh",
  14. "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'",
  15. "lint": "eslint ./src --ext .ts",
  16. "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
  17. "format": "prettier ./ --write"
  18. },
  19. "files": [
  20. "lib/**/*",
  21. "doc/**",
  22. "proto/**"
  23. ],
  24. "dependencies": {
  25. "google-protobuf": "^3.14.0"
  26. },
  27. "devDependencies": {
  28. "@types/chai": "^4.2.11",
  29. "@types/mocha": "^8.2.0",
  30. "chai": "^4.2.0",
  31. "eslint": "^7.6.0",
  32. "mocha": "^8.2.1",
  33. "prettier": "2.0.2",
  34. "ts-node": "^8.8.1",
  35. "ts-protoc-gen": "^0.14.0",
  36. "typescript": "^4.1.3"
  37. }
  38. }