mgcrea/image-moments

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "image-moments",
  "author": "Olivier Louvignes <olivier@mgcrea.io>",
  "version": "1.3.1",
  "description": "Javascript image moments",
  "main": "lib/index.js",
  "scripts": {
    "start": "npm run test:watch",
    "test": "NODE_ENV=test jest --runInBand",
    "test:watch": "npm run test -- --watch",
    "test:coverage": "npm run test -- --coverage",
    "lint": "NODE_ENV=test eslint src/",
    "compile": "rimraf lib/*; NODE_ENV=production babel src/ -d lib/ -s",
    "compile:watch": "npm run compile -- -w",
    "prepublish": "npm run compile"
  },
  "repository": "github:mgcrea/image-moment",
  "license": "MIT",
  "dependencies": {
    "babel-preset-env": "^1.6.1"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-eslint": "^8.0.2",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-function-bind": "^6.22.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-register": "^6.26.0",
    "codacy-coverage": "^2.0.3",
    "debug-utils": "^0.2.1",
    "eslint": "^4.11.0",
    "eslint-config-airbnb-base": "^12.1.0",
    "eslint-plugin-import": "^2.8.0",
    "expect": "^21.2.1",
    "jest": "^21.2.1",
    "rimraf": "^2.6.2"
  },
  "jest": {
    "testEnvironment": "node"
  }
}