strikeentco/feels

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "feels",
  "author": "Alexey Bystrov <strikeentco@gmail.com>",
  "version": "3.0.0",
  "description": "Feels allow you to calculate apparent temperature using heat index, approximate wet-bulb globe temperature, humidex, australian apparent temperature and wind chill.",
  "engines": {
    "node": ">=6.0.0"
  },
  "keywords": [
    "humidex",
    "wind chill",
    "heat index",
    "wind",
    "chill",
    "heat",
    "index",
    "wbgt",
    "aat",
    "feels like",
    "real feel",
    "comfort",
    "temperature",
    "speed",
    "convert",
    "apparent",
    "humidity",
    "dew point",
    "frost point"
  ],
  "main": "./main.js",
  "files": [
    "lib",
    "main.js"
  ],
  "scripts": {
    "test": "mocha test",
    "lint": "eslint main.js lib/**",
    "check": "npm run lint && npm run test",
    "cover": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=html",
    "test-on-travis": "nyc ./node_modules/mocha/bin/_mocha && nyc report --reporter=lcovonly"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/strikeentco/feels.git"
  },
  "bugs": {
    "url": "https://github.com/strikeentco/feels/issues"
  },
  "devDependencies": {
    "eslint": "^4.18.1",
    "eslint-config-airbnb": "^16.1.0",
    "eslint-plugin-import": "^2.9.0",
    "eslint-plugin-jsx-a11y": "^6.0.3",
    "eslint-plugin-react": "^7.7.0",
    "mocha": "^5.0.1",
    "nyc": "^11.4.1",
    "should": "^13.2.1"
  },
  "license": "MIT"
}