package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "stylus",
  3. "description": "Robust, expressive, and feature-rich CSS superset",
  4. "version": "0.54.5",
  5. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  6. "keywords": [
  7. "css",
  8. "parser",
  9. "style",
  10. "stylesheets",
  11. "jade",
  12. "language"
  13. ],
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/stylus/stylus"
  17. },
  18. "main": "./index.js",
  19. "browserify": "./lib/browserify.js",
  20. "engines": {
  21. "node": "*"
  22. },
  23. "bin": {
  24. "stylus": "./bin/stylus"
  25. },
  26. "scripts": {
  27. "prepublish": "npm prune",
  28. "test": "mocha test/ test/middleware/ --require should --bail --check-leaks --reporter dot",
  29. "test-cov": "mocha test/ test/middleware/ --require should --bail --reporter html-cov > coverage.html"
  30. },
  31. "dependencies": {
  32. "css-parse": "1.7.x",
  33. "mkdirp": "0.5.x",
  34. "debug": "*",
  35. "sax": "0.5.x",
  36. "glob": "7.0.x",
  37. "source-map": "0.1.x"
  38. },
  39. "devDependencies": {
  40. "should": "8.x",
  41. "mocha": "*",
  42. "jscoverage": "0.3.8"
  43. },
  44. "bugs": {
  45. "url": "https://github.com/stylus/stylus/issues"
  46. },
  47. "homepage": "https://github.com/stylus/stylus",
  48. "directories": {
  49. "doc": "docs",
  50. "example": "examples",
  51. "test": "test"
  52. },
  53. "license": "MIT"
  54. }