package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "denodeify",
  3. "version": "1.2.1",
  4. "description": "Tool to turn functions with Node-style callback APIs into functions that return Promises",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "files": "find . -name '*.js' ! -path './node_modules/*'",
  11. "jshint": "./node_modules/.bin/jshint `npm run -s files`",
  12. "lintspaces": "./node_modules/.bin/lintspaces -i js-comments -e .editorconfig `npm run -s files`",
  13. "test": "./node_modules/.bin/mocha test/*test.js && npm run jshint && npm run lintspaces"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/matthew-andrews/denodeify.git"
  18. },
  19. "author": "Matt Andrews",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/matthew-andrews/denodeify/issues"
  23. },
  24. "homepage": "https://github.com/matthew-andrews/denodeify",
  25. "devDependencies": {
  26. "es6-promise": "^1.0.0",
  27. "es6-shim": "^0.18.0",
  28. "jshint": "^2.5.5",
  29. "lie": "^2.7.7",
  30. "lintspaces-cli": "0.0.4",
  31. "mocha": "^1.21.4",
  32. "native-promise-only": "^0.7.6-a"
  33. }
  34. }