johntimothybailey/chai-sorted

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "chai-sorted",
  "version": "0.2.0",
  "description": "Chai JS Plugin for testing if an array has sorted values (strings, numbers, booleans). Very helpful when writing tests for features that implement Array.prototype.sort()",
  "main": "index.js",
  "scripts": {
    "test": "yarn lint && yarn test:only",
    "test:only": "mocha test/**/*",
    "lint": "eslint lib/**/* test/**/*"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/johntimothybailey/chai-sorted.git"
  },
  "keywords": [
    "chai",
    "chai-plugin",
    "sort"
  ],
  "author": "johntimothybailey",
  "license": "MIT",
  "engines": {
    "node": ">=0.4"
  },
  "devDependencies": {
    "chai": "^4.1.2",
    "eslint-config-standard": "^11.0.0",
    "eslint-plugin-chai-friendly": "^0.4.1",
    "eslint-plugin-import": "^2.9.0",
    "eslint-plugin-mocha": "^4.12.1",
    "eslint-plugin-node": "^6.0.1",
    "eslint-plugin-promise": "^3.7.0",
    "eslint-plugin-standard": "^3.0.1",
    "mocha": "^5.0.4",
    "standard": "^11.0.1"
  },
  "bugs": {
    "url": "https://github.com/johntimothybailey/chai-sorted/issues"
  },
  "homepage": "https://github.com/johntimothybailey/chai-sorted#readme",
  "directories": {
    "test": "test"
  }
}