{
  "name": "amorphous",
  "version": "0.1.0",
  "author": "Aria Buckles",
  "license": "MIT",
  "main": "lib/amorphous.js",
  "homepage": "https://amorphous.js.org",
  "description": "React state management, without the new concepts",
  "repository": {
    "type": "git",
    "url": "https://github.com/ariabuckles/amorphous.git"
  },
  "bugs": "https://github.com/ariabuckles/amorphous/issues",
  "peerDependencies": {
    "react": ">=16.3.2"
  },
  "devDependencies": {
    "ajv": "^6.5.0",
    "babel-cli": "^6.26.0",
    "babel-plugin-istanbul": "^4.1.6",
    "babel-preset-env": "^1.7.0",
    "babel-preset-flow": "^6.23.0",
    "babel-preset-react-app": "^3.1.1",
    "babel-register": "^6.26.0",
    "coveralls": "^3.0.1",
    "flow-bin": "^0.72.0",
    "flow-copy-source": "^1.3.0",
    "flow-typed": "^2.4.0",
    "gitbook-cli": "^2.3.2",
    "gitbook-plugin-search-plus": "^1.0.3",
    "mocha": "^5.2.0",
    "nyc": "^11.8.0",
    "prettier": "^1.12.1",
    "react": "^16.3.2",
    "react-dom": "^16.3.2",
    "react-scripts": "^1.1.4",
    "react-test-renderer": "^16.3.2"
  },
  "scripts": {
    "start": "react-scripts start",
    "format": "prettier --write src/*.js",
    "build": "NODE_ENV=production babel src -d lib && flow-copy-source src lib && npm run build:docs",
    "build:docs": "scripts/build-docs",
    "prepublishOnly": "npm run build",
    "build-demo": "react-scripts build",
    "test": "flow && NODE_ENV=test mocha -r babel-register src/__tests__/",
    "coverage": "NODE_ENV=test nyc --reporter=html --reporter=text mocha src/__tests__/",
    "coveralls": "NODE_ENV=test nyc --reporter=lcovonly mocha src/__tests__/ && cat ./coverage/lcov.info | coveralls",
    "watch-tests": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "directories": {
    "doc": "./docsource"
  },
  "babel": {
    "presets": [
      "env",
      "react-app",
      "flow"
    ],
    "env": {
      "test": {
        "plugins": [
          "istanbul"
        ]
      }
    }
  },
  "nyc": {
    "require": [
      "babel-register"
    ],
    "sourceMap": false,
    "instrument": false
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "es5",
    "arrowParens": "always"
  }
}
