12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "@joystream/metadata-protobuf",
- "version": "2.1.0",
- "description": "Joystream Metadata Protobuf Library (Olympia Release)",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "exports": {
- ".": "./lib/index.js",
- "./utils": "./lib/utils.js",
- "./licenses": "./lib/licenses.js",
- "./consts": "./lib/consts.js"
- },
- "typesVersions": {
- "*": {
- "lib/index.d.ts": ["lib/index.d.ts"],
- "*": [ "lib/*" ]
- }
- },
- "repository": "https://github.com/joystream/joystream",
- "author": "Joystream Contributors",
- "license": "MIT",
- "private": false,
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org"
- },
- "scripts": {
- "build": "yarn compile && rm -rf lib && tsc",
- "compile": "yarn ts-node ./scripts/compile.ts",
- "generate-doc": "./generate-md-doc.sh",
- "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --inline-diffs -r ts-node/register 'test/**/*.ts'",
- "lint": "eslint ./src --ext .ts",
- "checks": "tsc --noEmit --pretty && prettier ./ --check && yarn lint",
- "format": "prettier ./ --write",
- "prepack": "npm run build && npm run checks"
- },
- "files": [
- "lib/**/*",
- "doc/**",
- "proto/**",
- "compiled/**/*",
- "README.md"
- ],
- "dependencies": {
- "google-protobuf": "^3.14.0",
- "long": "^4.0.0",
- "@types/long": "^4.0.1",
- "i18n-iso-countries": "^6.8.0",
- "iso-639-1": "^2.1.9",
- "protobufjs": "^6.11.2",
- "iso-3166-2": "^1.0.0",
- "@types/iso-3166-2": "^1.0.0"
- },
- "devDependencies": {
- "@types/chai": "^4.2.11",
- "@types/mocha": "^8.2.0",
- "chai": "^4.2.0",
- "eslint": "^7.6.0",
- "mocha": "^8.2.1",
- "prettier": "2.0.2",
- "ts-node": "^10.2.1",
- "typescript": "^4.4.3"
- }
- }
|