package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "is-bluebird",
  3. "version": "1.0.2",
  4. "description": "Is this a bluebird promise I see before me?",
  5. "main": "./lib/",
  6. "author": {
  7. "name": "Overlook Motel"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/overlookmotel/is-bluebird.git"
  12. },
  13. "bugs": {
  14. "url": "https://github.com/overlookmotel/is-bluebird/issues"
  15. },
  16. "dependencies": {
  17. },
  18. "devDependencies": {
  19. "bluebird2": "^3.0.0",
  20. "bluebird3": "^3.0.6",
  21. "mocha": "^3.0.2",
  22. "chai": "^3.5.0",
  23. "jshint": "^2.9.3",
  24. "istanbul": "^0.4.5",
  25. "coveralls": "^2.11.12"
  26. },
  27. "keywords": [
  28. "bluebird",
  29. "promise",
  30. "is",
  31. "instance",
  32. "constructor",
  33. "version",
  34. "then",
  35. "check",
  36. "test"
  37. ],
  38. "scripts": {
  39. "test": "if [ $COVERAGE ]; then npm run coveralls; else npm run jshint && npm run test-main; fi",
  40. "jshint": "./node_modules/.bin/jshint lib test",
  41. "test-main": "./node_modules/mocha/bin/mocha --check-leaks --colors -t 10000 --reporter spec 'test/**/*.test.js'",
  42. "cover": "npm run cover-main && rm -rf coverage",
  43. "coveralls": "npm run cover-main && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
  44. "cover-main": "COVERAGE=true ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec 'test/**/*.test.js'"
  45. },
  46. "engines": {
  47. "node": ">=0.10.0"
  48. },
  49. "readmeFilename": "README.md",
  50. "license": "MIT"
  51. }