{
  "name": "literium-json",
  "version": "0.2.5",
  "description": "Type-safe JSON module for Literium web-framework.",
  "main": "index.js",
  "typings": "index.d.ts",
  "module": "es/index.js",
  "browser": {
    "./server.js": "./client.js",
    "./es/server.js": "./es/client.js"
  },
  "scripts": {
    "compile": "npm run compile-es && npm run compile-js",
    "clean": "npm run clean-es && npm run clean-js",
    "compile-es": "tsc --outDir es --module es6 --moduleResolution node",
    "clean-es": "rm -rf es",
    "compile-js": "tsc --outDir ./",
    "clean-js": "rm -rf *.d.ts *.js *.js.map",
    "prepack": "npm run compile",
    "postpack": "npm run clean",
    "compile-test": "browserify -d test/index.ts -p [ tsify --noImplicitAny ] -o test-out.js",
    "clean-test": "rm -f test-out.js",
    "test": "testem ci",
    "test-node": "mocha -r ts-node/register test/index.ts -R spec",
    "test-dev": "testem",
    "test-typing": "ts-node test/typing"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/katyo/literium/tree/master/json"
  },
  "keywords": [
    "json",
    "typed",
    "typesafe",
    "literium",
    "framework",
    "typescript",
    "es6",
    "es2015"
  ],
  "author": "K. <kayo@illumium.org>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/katyo/literium/issues"
  },
  "devDependencies": {
    "@types/mocha": "^5",
    "@types/node": "^8",
    "browserify": "^16",
    "mocha": "^5",
    "testem": "^2",
    "ts-node": "^7",
    "tsify": "^4",
    "typescript": "^3"
  },
  "dependencies": {
    "literium-base": "^0.2"
  }
}
