{
  "name": "movielens",
  "version": "0.3.0",
  "description": "Promise based Node API for the movielens unpublished API",
  "main": "dist/index.js",
  "repository": "git@github.com:longseespace/movielens.git",
  "author": "Long Nguyen <long@podzim.co>",
  "license": "MIT",
  "scripts": {
    "clean": "rimraf dist",
    "build": "babel src -d dist",
    "prepublish": "npm run build",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "sanity_test": "node tests/sanity.js",
    "jest": "jest",
    "test": "jest && yarn sanity_test"
  },
  "dependencies": {
    "axios": "^0.18.0"
  },
  "devDependencies": {
    "babel-cli": "6.22.2",
    "babel-eslint": "6.1.2",
    "babel-plugin-transform-object-rest-spread": "6.22.0",
    "babel-preset-env": "1.1.8",
    "eslint": "2.13.1",
    "eslint-config-airbnb": "9.0.1",
    "eslint-plugin-import": "1.12.0",
    "eslint-plugin-jsx-a11y": "1.5.5",
    "eslint-plugin-react": "5.2.2",
    "jest": "^23.6.0",
    "rimraf": "2.5.4"
  },
  "jest": {
    "roots": [
      "./tests"
    ],
    "testEnvironment": "node",
    "collectCoverage": false,
    "coverageDirectory": "coverage",
    "moduleFileExtensions": [
      "js",
      "json",
      "es6"
    ]
  }
}
