{
  "name": "stdobj",
  "version": "0.6.2",
  "main": "index.js",
  "files": [
    "browser/",
    "lib/"
  ],
  "author": "fluidbyte <kent@fluidbyte.net>",
  "license": "ISC",
  "repository": "git@github.com:Fluidbyte/stdobj.git",
  "scripts": {
    "lint": "standard --fix",
    "test": "NODE_PATH=./ jest --coverage --forceExit",
    "test:watch": "NODE_PATH=./ jest --watchAll --runInBand",
    "bundle": "parcel build browser.js --out-dir=browser/ --out-file=index.js",
    "prerelease": "yarn lint && yarn test && yarn bundle",
    "release:patch": "yarn prerelease && npm version patch && git push origin master && git push --tags && npm publish",
    "release:minor": "yarn prerelease && npm version minor && git push origin master && git push --tags && npm publish",
    "release:major": "yarn prerelease && npm version major && git push origin master && git push --tags && npm publish"
  },
  "devDependencies": {
    "jest": "22.4.3",
    "parcel": "^1.9.7",
    "standard": "^11.0.1"
  },
  "standard": {
    "env": [
      "jest"
    ]
  },
  "jest": {
    "testEnvironment": "node",
    "verbose": true,
    "coverageThreshold": {
      "global": {
        "branches": 95,
        "functions": 95,
        "lines": 95,
        "statements": -5
      }
    }
  },
  "methods": [
    "isObj",
    "keys",
    "toPairs",
    "fromPairs",
    "get",
    "set",
    "flatten",
    "expand",
    "redact",
    "merge"
  ]
}
