{
  "name": "stonex",
  "version": "0.1.3",
  "description": "Predictable state container for TypeScript/JavaScript applications",
  "main": "lib/stonex.js",
  "unpkg": "dist/stonex.js",
  "module": "es/stonex.js",
  "scripts": {
    "build:live": "nodemon --legacy-watch --watch \".\\**\\*.ts\" --exec ts-node example/index.ts",
    "build": "rollup -c",
    "clean": "rimraf lib dist es",
    "debug": "npm run build:live --debug-brk=5858",
    "exec": "ts-node example/index.ts",
    "lint:fix": "yarn lint --fix",
    "lint": "tslint 'src/**/*.ts' 'tests/**/*.ts'",
    "prepare": "yarn clean && yarn build",
    "test": "jest"
  },
  "author": "acacode",
  "license": "MIT",
  "devDependencies": {
    "@babel/core": "^7.4.5",
    "@babel/preset-env": "^7.4.5",
    "@babel/preset-typescript": "^7.3.3",
    "@types/jest": "^24.0.13",
    "babel-jest": "^24.8.0",
    "chai": "^4.2.0",
    "jest": "^24.8.0",
    "mocha": "^6.1.4",
    "nodemon": "^1.18.10",
    "rimraf": "^2.6.3",
    "rollup": "^1.11.3",
    "rollup-plugin-commonjs": "^9.3.4",
    "rollup-plugin-node-resolve": "^4.2.4",
    "rollup-plugin-replace": "^2.2.0",
    "rollup-plugin-terser": "^4.0.4",
    "rollup-plugin-typescript": "^1.0.1",
    "ts-jest": "^24.0.2",
    "ts-node": "^8.0.2",
    "tslint": "5.13.0",
    "tslint-config-standard": "^8.0.1", 
    "tslint-eslint-rules": "^5.4.0",
    "typescript": "3.3.3333"
  },
  "dependencies": {},
  "typings": "./index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/acacode/stonex.git"
  },
  "keywords": [
    "state",
    "predictable",
    "modular",
    "immutable",
    "react",
    "state-container",
    "javascript",
    "javascript-library",
    "redux",
    "reducer",
    "flux"
  ],
  "files": [
    "dist",
    "lib",
    "es",
    "src",
    "index.d.ts"
  ]
}
