package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "stealthy-require",
  3. "version": "1.1.1",
  4. "description": "The closest you can get to require something with bypassing the require cache",
  5. "keywords": [
  6. "require",
  7. "bypass",
  8. "no",
  9. "cache",
  10. "fresh"
  11. ],
  12. "main": "./lib/index.js",
  13. "scripts": {
  14. "test": "./node_modules/.bin/gulp ci",
  15. "test-publish": "./node_modules/.bin/gulp ci-no-cov",
  16. "publish-please": "publish-please",
  17. "prepublish": "publish-please guard"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/analog-nico/stealthy-require.git"
  22. },
  23. "author": "Nicolai Kamenzky (https://github.com/analog-nico)",
  24. "license": "ISC",
  25. "bugs": {
  26. "url": "https://github.com/analog-nico/stealthy-require/issues"
  27. },
  28. "homepage": "https://github.com/analog-nico/stealthy-require#readme",
  29. "engines": {
  30. "node": ">=0.10.0"
  31. },
  32. "dependencies": {},
  33. "devDependencies": {
  34. "bcrypt": "~1.0.2",
  35. "browserify": "~14.3.0",
  36. "chai": "~3.5.0",
  37. "chalk": "~1.1.3",
  38. "gulp": "~3.9.1",
  39. "gulp-coveralls": "~0.1.4",
  40. "gulp-eslint": "~2.1.0",
  41. "gulp-istanbul": "~1.1.1",
  42. "gulp-mocha": "~3.0.1",
  43. "mkdirp": "~0.5.1",
  44. "publish-please": "~2.3.1",
  45. "rimraf": "~2.6.1",
  46. "run-sequence": "~1.2.2",
  47. "webpack": "~1.15.0"
  48. }
  49. }