package.json 969 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "reduce-function-call",
  3. "version": "1.0.2",
  4. "description": "Reduce function calls in a string, using a callback",
  5. "keywords": [
  6. "string",
  7. "reduce",
  8. "replacement",
  9. "function",
  10. "call",
  11. "eval",
  12. "interpret"
  13. ],
  14. "author": "MoOx",
  15. "license": "MIT",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/MoOx/reduce-function-call.git"
  19. },
  20. "files": [
  21. "CHANGELOG.md",
  22. "LICENSE",
  23. "README.md",
  24. "index.js"
  25. ],
  26. "dependencies": {
  27. "balanced-match": "^0.4.2"
  28. },
  29. "devDependencies": {
  30. "jscs": "^2.0.0",
  31. "jshint": "^2.8.0",
  32. "jshint-stylish": "^2.0.1",
  33. "npmpub": "^3.1.0",
  34. "tap-colorize": "^1.2.0",
  35. "tape": "^4.0.3"
  36. },
  37. "scripts": {
  38. "jscs": "jscs *.js **/*.js",
  39. "jshint": "jshint . --exclude node_modules --reporter node_modules/jshint-stylish/index.js",
  40. "test": "npm run jscs && npm run jshint && tape test | tap-colorize",
  41. "release": "npmpub"
  42. }
  43. }