{
  "name": "@hn3000/metamodel",
  "version": "1.10.0",
  "description": "Meta Model for TypeScript and EcmaScript apps, to help with JSON schema processing and UI construction.",
  "repository": {
    "type": "git",
    "url": "git@github.com:hn3000/metamodel-mr"
  },
  "scripts": {
    "tsc": "tsc",
    "tsc:w": "tsc -w",
    "prepublish": "tsc",
    "pretest": "tsc",
    "test": "node out/test/allTests.js",
    "pretest-debug": "tsc",
    "test-debug": "node --inspect-brk out/test/allTests.js",
    "precover": "tsc",
    "cover": "nyc node --max-old-space-size=30000 out/test/allTests.js"
  },
  "main": "out/src/model.js",
  "types": "out/src/model.d.ts",
  "keywords": [
    "model",
    "driven",
    "metamodel"
  ],
  "author": "Harald Niesche",
  "license": "MIT",
  "files": [
    "src/**",
    "out/**",
    "!out/node_modules/**",
    "test/*.ts"
  ],
  "devDependencies": {
    "@types/isomorphic-fetch": "0.0.35",
    "@types/node": "^16.10.2",
    "nyc": "^15.1.0",
    "@hn3000/tsunit-async": "github:hn3000/tsunit-async",
    "typescript": "^4.4.3"
  },
  "dependencies": {
    "@hn3000/json-ref": "^1.1.0"
  },
  "optionalDependencies": {
    "isomorphic-fetch": "^3.0.0"
  },
  "nyc": {
    "all": true,
    "excludeAfterRemap": false,
    "extension": [
      ".js",
      ".ts"
    ],
    "include": [
      "out/**",
      "src/*.ts"
    ],
    "exclude": [
      "test/**",
      "out/test/**"
    ],
    "reporter": [
      "text",
      "html",
      "lcov"
    ]
  }
}
