{
  "name": "neoman-engine",
  "version": "1.0.0-alpha044",
  "description": "Neoman templating engine.",
  "license": "MIT",
  "author": "Chris Dibbern",
  "main": "./lib/index.js",
  "typings": "./lib/index.d.ts",
  "sideEffects": false,
  "repository": "https://github.com/ossplz/neoman-engine",
  "scripts": {
    "build": "npm-run-all clean tsc-lib tsc-lib-esm webpack",
    "builde2e": "tsc --project ./src/e2e/tsconfig.json",
    "buildunittest": "tsc --project ./tsconfig-xunit.json",
    "clean": "rimraf ./lib/* ./dist/* ./test/* ./coverage/*",
    "precover": "rimraf ./coverage/*",
    "cover": "nyc --all npm run unittest",
    "pree2e": "npm-run-all clean builde2e",
    "e2e": "alsatian --tap test/e2e/*.e2e.js",
    "report_coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "test": "npm-run-all unittest",
    "tsc-lib": "tsc -p tsconfig-build.json",
    "tsc-lib-esm": "tsc -m es6 -outDir lib-esm -p tsconfig-build.json",
    "ts-node": "ts-node",
    "unittest": "ts-node --no-cache --project tsconfig-xunit.json src/spec-lib/runner.ts",
    "taptest": "ts-node --tap src/spec-lib/runner.ts",
    "webpack": "webpack --optimize-minimize",
    "prepublishOnly": "npm-run-all build"
  },
  "browser": {
    "fs": false,
    "path": false
  },
  "dependencies": {
    "nested-error-stacks": "^2.0.0",
    "picomatch": "^2.0.5",
    "rxjs": "^6.5.1",
    "xregexp": "^4.2.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^5.0.2",
    "@types/i18next": "^12.1.0",
    "@types/launchpad": "^0.6.0",
    "@types/lodash": "^4.14.123",
    "@types/node": "^10.5.5",
    "@types/os-locale": "^2.1.0",
    "@types/sinon": "^4.3.3",
    "@types/tmp": "0.0.33",
    "@types/underscore": "^1.8.8",
    "@types/ws": "^3.2.1",
    "@types/xregexp": "^3.0.29",
    "alsatian": "^2.3.0",
    "alsatian-fluent-assertions": "^1.0.0-beta.5",
    "awesome-typescript-loader": "^5.2.1",
    "babel": "^6.23.0",
    "babel-plugin-syntax-dynamic-import": "^6.18.0",
    "babel-preset-env": "^1.7.0",
    "browserstack": "^1.5.1",
    "chai": "^4.1.2",
    "chai-as-promised": "^7.1.1",
    "codecov": "^3.3.0",
    "commandpost": "^1.3.0",
    "copyfiles": "^1.2.0",
    "cross-env": "^5.1.5",
    "cryptiles": "^4.1.2",
    "debug": "^4.0.1",
    "declaration-bundler-webpack-plugin": "^1.0.3",
    "fe.js": "^0.1.4",
    "i18next": "^15.1.0",
    "inversify": "^4.13.0",
    "launchpad": "^0.7.0",
    "lodash": "^4.17.11",
    "mock-fs-require-fix": "^1.0.1",
    "mockfs": "^0.1.5",
    "mountfs": "^0.5.0",
    "npm-run-all": "^4.1.3",
    "nyc": "^14.0.0",
    "optimist": "^0.6.1",
    "os-locale": "^2.1.0",
    "reflect-metadata": "^0.1.12",
    "rimraf": "^2.6.2",
    "simple-mapper": "^2.1.3",
    "source-map-support": "^0.5.5",
    "tmp": "0.0.33",
    "ts-loader": "^5.4.4",
    "ts-node": "^6.0.3",
    "typemoq": "^2.1.0",
    "typescript": "^3.0.1",
    "underscore": "^1.9.0",
    "webpack": "^4.30.0",
    "webpack-bundle-analyzer": "^3.3.2",
    "webpack-cli": "^3.3.1",
    "ws": "^5.1.1"
  },
  "nyc": {
    "include": [
      "src/lib/**"
    ],
    "extension": [
      ".ts"
    ],
    "exclude": [
      "typings",
      "**/*.d.ts",
      "**/*.test.ts",
      "**/*.spec.ts"
    ],
    "reporter": [
      "json",
      "html"
    ]
  }
}
