package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "pirates",
  3. "description": "Properly hijack require",
  4. "main": "lib/index.js",
  5. "types": "index.d.ts",
  6. "scripts": {
  7. "clean": "rimraf lib",
  8. "build": "babel src -d lib",
  9. "test": "cross-env BABEL_ENV=test yarn run build && nyc ava",
  10. "lint": "eslint --report-unused-disable-directives .",
  11. "prepublishOnly": "yarn run build"
  12. },
  13. "files": [
  14. "lib",
  15. "index.d.ts"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/danez/pirates.git"
  20. },
  21. "engines": {
  22. "node": ">= 6"
  23. },
  24. "author": {
  25. "name": "Ari Porad",
  26. "email": "ari@ariporad.com",
  27. "url": "http://ariporad.com"
  28. },
  29. "devDependencies": {
  30. "@babel/cli": "^7.0.0",
  31. "@babel/core": "^7.0.0",
  32. "@babel/preset-env": "^7.0.0",
  33. "ava": "^1.2.1",
  34. "babel-core": "^7.0.0-0",
  35. "babel-eslint": "^10.0.1",
  36. "babel-plugin-istanbul": "^5.1.0",
  37. "cross-env": "^5.0.5",
  38. "cz-conventional-changelog": "^2.0.0",
  39. "decache": "^4.1.0",
  40. "eslint": "^5.1.0",
  41. "eslint-config-prettier": "^4.0.0",
  42. "eslint-plugin-import": "^2.2.0",
  43. "eslint-plugin-prettier": "^3.0.1",
  44. "mock-require": "^3.0.2",
  45. "nyc": "^13.2.0",
  46. "prettier": "^1.16.4",
  47. "rewire": "^4.0.1",
  48. "rimraf": "^2.6.1"
  49. },
  50. "license": "MIT",
  51. "bugs": {
  52. "url": "https://github.com/danez/pirates/issues"
  53. },
  54. "homepage": "https://github.com/danez/pirates#readme",
  55. "config": {
  56. "commitizen": {
  57. "path": "cz-conventional-changelog"
  58. }
  59. },
  60. "ava": {
  61. "files": [
  62. "test/*.js"
  63. ],
  64. "sources": [
  65. "lib/**/*.js"
  66. ]
  67. },
  68. "nyc": {
  69. "include": [
  70. "src/*.js"
  71. ],
  72. "reporter": [
  73. "json",
  74. "text"
  75. ],
  76. "sourceMap": false,
  77. "instrument": false
  78. },
  79. "version": "4.0.4"
  80. }