{
  "name": "@syncano/core",
  "version": "0.15.0",
  "description": "A library to intereact with the Syncano API on a server side.",
  "main": "lib/index.js",
  "author": "Syncano Inc.",
  "license": "MIT",
  "repository": "https://github.com/Syncano/syncano-node.git",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "prepublish": "npm run build",
    "prebuild": "rimraf ./lib",
    "build": "npx babel src --out-dir lib",
    "build:watch": "babel src --out-dir lib -w",
    "test": "npm run test:unit && npm run test:e2e",
    "test:base": "cross-env NODE_ENV=test mocha --reporter spec --require babel-register",
    "test:unit": "npm run test:base -- test/unit/**/*.js",
    "lint": "standard --fix --env mocha",
    "format": "prettier --write --single-quote --no-semi --no-bracket-spacing *.js {src,test}/**/*.js"
  },
  "dependencies": {
    "debug": "^4.1.0",
    "form-data": "^2.3.3",
    "lodash.get": "^4.4.2",
    "lodash.merge": "^4.6.1",
    "lodash.set": "^4.3.2",
    "node-fetch": "^2.3.0"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-eslint": "^8.0.1",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-export-extensions": "^6.22.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-plugin-transform-strict-mode": "^6.24.1",
    "babel-preset-env": "^1.7.0",
    "babel-register": "^6.26.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "cross-env": "^5.2.0",
    "isparta": "^4.1.0",
    "lint-staged": "^6.1.0",
    "mocha": "^5.2.0",
    "nock": "^9.0.22",
    "prettier": "^1.15.2",
    "rimraf": "^2.6.2",
    "should": "^13.2.3",
    "standard": "^11.0.1"
  },
  "babel": {
    "plugins": [
      "transform-strict-mode",
      "transform-export-extensions",
      "transform-object-rest-spread",
      "transform-class-properties",
      "add-module-exports"
    ],
    "presets": [
      [
        "env",
        {
          "targets": {
            "node": "8"
          }
        }
      ]
    ]
  }
}
