package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "cssesc",
  3. "version": "0.1.0",
  4. "description": "A JavaScript library for escaping CSS strings and identifiers while generating the shortest possible ASCII-only output.",
  5. "homepage": "http://mths.be/cssesc",
  6. "main": "cssesc.js",
  7. "bin": "bin/cssesc",
  8. "man": "man/cssesc.1",
  9. "keywords": [
  10. "css",
  11. "escape",
  12. "identifier",
  13. "string",
  14. "tool"
  15. ],
  16. "licenses": [
  17. {
  18. "type": "MIT",
  19. "url": "http://mths.be/mit"
  20. }
  21. ],
  22. "author": {
  23. "name": "Mathias Bynens",
  24. "url": "http://mathiasbynens.be/"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/mathiasbynens/cssesc.git"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/mathiasbynens/cssesc/issues"
  32. },
  33. "files": [
  34. "LICENSE-MIT.txt",
  35. "cssesc.js",
  36. "bin/",
  37. "man/"
  38. ],
  39. "directories": {
  40. "test": "tests"
  41. },
  42. "scripts": {
  43. "test": "node tests/tests.js"
  44. },
  45. "dependencies": {},
  46. "devDependencies": {
  47. "grunt": "~0.4.1",
  48. "grunt-shell": "~0.3.1",
  49. "grunt-template": "~0.2.0",
  50. "istanbul": "~0.1.42",
  51. "qunit-clib": "~1.3.0",
  52. "qunitjs": "~1.11.0",
  53. "regenerate": "~0.5.2",
  54. "requirejs": "~2.1.8"
  55. }
  56. }