{
  "name": "rx-brain",
  "version": "1.4.0",
  "description": "An experiment to create an artificial brain that develops and persists itself as source code",
  "main": "index.js",
  "scripts": {
    "precommit": "npm run lint && npm test",
    "commit": "git-cz",
    "pretest": "tsc --listEmittedFiles --noStrictGenericChecks",
    "test": "jest --coverage --runInBand --verbose --config=jestconfig.test.json",
    "preupdate:all": "rimraf ./node_modules",
    "update:all": "npm run update:cli && npm run update:packages && npm run update:types",
    "update:packages": "npm install --save typescript@latest rxjs@latest my-ts@latest && npm install --save-dev jest@latest tslint@latest semantic-release@latest commitizen@latest cz-conventional-changelog@latest",
    "update:types": "npm install --save-dev @types/jest@latest @types/node@latest",
    "update:cli": "npm install -g typescript@latest jest@latest tslint@latest rimraf@latest semantic-release-cli@latest commitizen@latest cz-conventional-changelog@latest codecov@latest",
    "update:check": "npm outdated",
    "update:npm": "npm -v && npm install -g npm@latest && npm -v",
    "lint": "tslint 'src/**/*.ts'",
    "package": "rimraf ./package && rm -f my*.tgz && npm pack",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "devDependencies": {
    "@types/jest": "20.0.2",
    "@types/node": "8.0.7",
    "commitizen": "2.9.6",
    "cz-conventional-changelog": "2.0.0",
    "jest": "20.0.4",
    "semantic-release": "6.3.6",
    "tslint": "5.4.3"
  },
  "dependencies": {
    "my-ts": "1.6.0",
    "rxjs": "5.4.1",
    "typescript": "2.4.1"
  },
  "engines": {
    "node": ">=7.0.0",
    "npm": ">=5.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/hdorgeval/rx-brain.git"
  },
  "author": "Henri d'Orgeval",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/hdorgeval/rx-brain/issues"
  },
  "homepage": "https://github.com/hdorgeval/rx-brain#readme",
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}