package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "accord",
  3. "description": "A unified interface for compiled languages and templates in JavaScript",
  4. "version": "0.29.0",
  5. "author": "Jeff Escalante",
  6. "bugs": "https://github.com/jescalan/accord",
  7. "dependencies": {
  8. "convert-source-map": "^1.5.0",
  9. "glob": "^7.0.5",
  10. "indx": "^0.2.3",
  11. "lodash.clone": "^4.3.2",
  12. "lodash.defaults": "^4.0.1",
  13. "lodash.flatten": "^4.2.0",
  14. "lodash.merge": "^4.4.0",
  15. "lodash.partialright": "^4.1.4",
  16. "lodash.pick": "^4.2.1",
  17. "lodash.uniq": "^4.3.0",
  18. "resolve": "^1.5.0",
  19. "semver": "^5.3.0",
  20. "uglify-js": "^2.8.22",
  21. "when": "^3.7.8"
  22. },
  23. "devDependencies": {
  24. "LiveScript": "^1.3.1",
  25. "acorn": "^5.0.3",
  26. "babel": "^6.23.0",
  27. "babel-core": "^6.24.1",
  28. "babel-preset-es2015": "^6.24.1",
  29. "buble": "^0.15.2",
  30. "chai": "^3.5.0",
  31. "clean-css": "^4.0.12",
  32. "coco": "^0.9.1",
  33. "coffee-coverage": "^2.0.1",
  34. "coffee-react-transform": "^5.0.0",
  35. "coffee-script": "^1.12.5",
  36. "coveralls": "^2.13.1",
  37. "css-parse": "^2.0.0",
  38. "csso": "^3.1.1",
  39. "dogescript": "^2.3.0",
  40. "dot": "^1.1.1",
  41. "eco": "^1.0.3",
  42. "ejs": "^2.5.6",
  43. "hamljs": "^0.6.2",
  44. "handlebars": "^4.0.8",
  45. "he": "^1.1.1",
  46. "hogan.js": "^3.0.2",
  47. "html-minifier": "^3.4.3",
  48. "istanbul": "^0.4.4",
  49. "jade": "^1.11.0",
  50. "less": "^3.0.0",
  51. "marc": "^0.1.0",
  52. "marked": "^0.3.5",
  53. "mocha": "^3.3.0",
  54. "mocha-lcov-reporter": "^1.3.0",
  55. "myth": "^1.5.0",
  56. "node-sass": "^4.5.2",
  57. "parse5": "^3.0.2",
  58. "polytest": "0.0.1",
  59. "postcss": "^5.2.17",
  60. "postcss-simple-vars": "^3.1.0",
  61. "pug": "^2.0.0-rc.1",
  62. "react-tools": "^0.13.3",
  63. "stylus": "^0.54.5",
  64. "swig": "^1.4.2",
  65. "toffee": "^0.1.13",
  66. "typescript-compiler": "^1.4.1"
  67. },
  68. "homepage": "https://github.com/jescalan/accord",
  69. "keywords": [
  70. "compile"
  71. ],
  72. "license": "MIT",
  73. "main": "lib",
  74. "repository": {
  75. "type": "git",
  76. "url": "https://github.com/jenius/accord"
  77. },
  78. "scripts": {
  79. "coverage": "mocha && ./node_modules/.bin/istanbul report && open coverage/lcov-report/index.html",
  80. "coveralls": "istanbul report && cat ./coverage/lcov.info | coveralls",
  81. "legacy": "./node_modules/.bin/coffee test/legacy.coffee",
  82. "test": "mocha test/test.coffee"
  83. }
  84. }