package.json 649 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "rework",
  3. "version": "1.0.1",
  4. "description": "Plugin framework for CSS preprocessing",
  5. "main": "index",
  6. "files": [
  7. "index.js"
  8. ],
  9. "dependencies": {
  10. "css": "^2.0.0",
  11. "convert-source-map": "^0.3.3"
  12. },
  13. "devDependencies": {
  14. "mocha": "^1.20.1",
  15. "should": "^4.0.4"
  16. },
  17. "scripts": {
  18. "test": "mocha --require should --reporter spec"
  19. },
  20. "keywords": [
  21. "css",
  22. "manipulation",
  23. "preprocess",
  24. "transform",
  25. "server"
  26. ],
  27. "author": "TJ Holowaychuk <tj@vision-media.ca>",
  28. "repository": {
  29. "type": "git",
  30. "url": "git://github.com/reworkcss/rework.git"
  31. },
  32. "license": "MIT"
  33. }