package.json 787 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "css",
  3. "version": "2.2.4",
  4. "description": "CSS parser / stringifier",
  5. "main": "index",
  6. "files": [
  7. "index.js",
  8. "lib",
  9. "Readme.md"
  10. ],
  11. "dependencies": {
  12. "inherits": "^2.0.3",
  13. "source-map": "^0.6.1",
  14. "source-map-resolve": "^0.5.2",
  15. "urix": "^0.1.0"
  16. },
  17. "devDependencies": {
  18. "mocha": "^1.21.3",
  19. "should": "^4.0.4",
  20. "matcha": "^0.5.0",
  21. "bytes": "^1.0.0"
  22. },
  23. "scripts": {
  24. "benchmark": "matcha",
  25. "test": "mocha --require should --reporter spec --bail test/*.js"
  26. },
  27. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  28. "license": "MIT",
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/reworkcss/css.git"
  32. },
  33. "keywords": [
  34. "css",
  35. "parser",
  36. "stringifier",
  37. "stylesheet"
  38. ]
  39. }