package.json 520 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "css-parse",
  3. "version": "1.7.0",
  4. "description": "CSS parser",
  5. "keywords": [
  6. "css",
  7. "parser",
  8. "stylesheet"
  9. ],
  10. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  11. "license": "MIT",
  12. "devDependencies": {
  13. "mocha": "*",
  14. "should": "*",
  15. "matcha": "~0.4.0",
  16. "bytes": "~0.2.1"
  17. },
  18. "main": "index",
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/visionmedia/css-parse.git"
  22. },
  23. "scripts": {
  24. "test": "make test"
  25. },
  26. "files": [
  27. "index.js"
  28. ]
  29. }