package.json 1.58 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
{
  "name": "@sinonjs/commons",
  "version": "1.7.2",
  "description": "Simple functions shared among the sinon end user libraries",
  "main": "lib/index.js",
  "scripts": {
    "lint": "eslint .",
    "precommit": "lint-staged",
    "test": "mocha --recursive -R dot \"lib/**/*.test.js\"",
    "test-check-coverage": "npm run test-coverage && nyc check-coverage --branches 100 --functions 100 --lines 100",
    "test-coverage": "nyc --reporter text --reporter html --reporter lcovonly npm run test",
    "preversion": "npm run test-check-coverage",
    "version": "changes --commits --footer",
    "postversion": "git push --follow-tags && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sinonjs/commons.git"
  },
  "author": "",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/sinonjs/commons/issues"
  },
  "homepage": "https://github.com/sinonjs/commons#readme",
  "lint-staged": {
    "*.js": [
      "eslint"
    ]
  },
  "devDependencies": {
    "@sinonjs/referee-sinon": "7.0.2",
    "@studio/changes": "^2.0.0",
    "eslint": "^6.1.0",
    "eslint-config-prettier": "^6.3.0",
    "eslint-config-sinon": "^4.0.0",
    "eslint-plugin-ie11": "^1.0.0",
    "eslint-plugin-jsdoc": "^22.1.0",
    "eslint-plugin-local-rules": "^0.1.0",
    "eslint-plugin-mocha": "^6.1.1",
    "eslint-plugin-prettier": "^3.0.0",
    "husky": "4.2.3",
    "jsverify": "0.8.4",
    "knuth-shuffle": "^1.0.8",
    "lint-staged": "10.1.1",
    "mocha": "7.1.0",
    "nyc": "15.0.0",
    "prettier": "^1.14.3"
  },
  "dependencies": {
    "type-detect": "4.0.8"
  }
}