package.json 631 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "cssom",
  3. "description": "CSS Object Model implementation and CSS parser",
  4. "keywords": ["CSS", "CSSOM", "parser", "styleSheet"],
  5. "version": "0.2.0",
  6. "homepage": "https://github.com/NV/CSSOM",
  7. "author": "Nikita Vasilyev <me@elv1s.ru>",
  8. "repository": {
  9. "type": "git",
  10. "url": "git://github.com/NV/CSSOM.git"
  11. },
  12. "bugs": {
  13. "web": "https://github.com/NV/CSSOM/issues"
  14. },
  15. "directories": {
  16. "doc": "./doc",
  17. "lib": "./lib",
  18. "test": "./test"
  19. },
  20. "main": "./lib/index.js",
  21. "engines": {
  22. "node": ">=0.2.0"
  23. },
  24. "licenses": [
  25. {
  26. "type": "MIT",
  27. "url": "http://creativecommons.org/licenses/MIT/"
  28. }
  29. ]
  30. }