package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "preprocess",
  3. "description": "Preprocess directives in HTML, JavaScript, etc directives based off variable context",
  4. "version": "3.2.0",
  5. "homepage": "https://github.com/jsoverson/preprocess",
  6. "author": {
  7. "name": "Jarrod Overson",
  8. "email": "jsoverson@gmail.com",
  9. "url": "http://jarrodoverson.com/"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/jsoverson/preprocess.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/jsoverson/preprocess/issues"
  17. },
  18. "licenses": [
  19. {
  20. "type": "Apache 2.0",
  21. "url": "https://github.com/jsoverson/preprocess/blob/master/LICENSE"
  22. }
  23. ],
  24. "main": "lib/preprocess.js",
  25. "engines": {
  26. "node": ">= 0.10.0"
  27. },
  28. "scripts": {
  29. "test": "grunt test",
  30. "ci": "grunt ci"
  31. },
  32. "dependencies": {
  33. "xregexp": "3.1.0"
  34. },
  35. "devDependencies": {
  36. "chai": "^3.5.0",
  37. "chai-spies": "^0.7.0",
  38. "grunt": "^0.4.5",
  39. "grunt-benchmark": "^0.3.0",
  40. "grunt-cli": "^0.1.13",
  41. "grunt-contrib-clean": "^1.0.0",
  42. "grunt-contrib-copy": "^0.8.0",
  43. "grunt-contrib-jshint": "^1.0.0",
  44. "grunt-contrib-watch": "^0.6.1",
  45. "grunt-coveralls": "^1.0.0",
  46. "grunt-deps-ok": "^0.9.0",
  47. "grunt-mocha-istanbul": "^3.0.1",
  48. "grunt-mocha-test": "^0.12.7",
  49. "istanbul": "^0.4.2",
  50. "load-grunt-tasks": "^3.4.0",
  51. "mocha": "^2.4.5",
  52. "time-grunt": "^1.3.0",
  53. "travis-cov": "^0.2.5"
  54. },
  55. "keywords": [
  56. "directive",
  57. "ENV",
  58. "environment",
  59. "ifdef",
  60. "ifndef",
  61. "echo",
  62. "include",
  63. "exclude",
  64. "process",
  65. "preprocess",
  66. "pragma"
  67. ]
  68. }