{
  "name": "ufunc",
  "version": "2.0.1",
  "description": "Ufunc is a set of JavaScript functional methods",
  "keywords": [
    "javascript",
    "functional programming"
  ],
  "repository": "git@github.com:otissv/ufunc.git",
  "author": "Otis Virginie",
  "license": "MIT",
  "main": "./lib/ufunc.js",
  "scripts": {
    "start": "babel -d lib/ src/ --watch",
    "build": "babel -d lib/ src/ || true",
    "prepublish": "npm run build",
    "lint": "eslint --quiet ./**  || true",
    "lint:watch": "watch 'npm run lint' ./",
    "postbuild": "npm run test",
    "test": "babel-node test-runner.js | tap-min || true",
    "test:spec": "babel-node test-runner.js | tap-difflet || true",
    "test:watch": "watch 'npm run test' ./"
  },
  "devDependencies": {
    "babel-cli": "~6.11.4",
    "babel-core": "~6.13.2",
    "babel-preset-es2015": "~6.13.2",
    "eslint": "~3.2.2",
    "eslint-config-standard": "~5.3.5",
    "eslint-plugin-promise": "~2.0.1",
    "eslint-plugin-smells": "~1.0.1",
    "eslint-plugin-standard": "~2.0.0",
    "glob": "~7.0.5",
    "tap-difflet": "~0.6.0",
    "tap-min": "~1.1.0",
    "tape": "~4.6.0",
    "watch": "~0.19.1"
  },
  "babel": {
    "presets": [
      "es2015"
    ]
  }
}
