package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "cssstyle",
  3. "description": "CSSStyleDeclaration Object Model implementation",
  4. "keywords": [
  5. "CSS",
  6. "CSSStyleDeclaration",
  7. "StyleSheet"
  8. ],
  9. "version": "1.1.1",
  10. "homepage": "https://github.com/jsakas/CSSStyleDeclaration",
  11. "maintainers": [
  12. {
  13. "name": "Jon Sakas",
  14. "email": "jon.sakas@gmail.com",
  15. "url": "http://jon.sakas.co/"
  16. }
  17. ],
  18. "contributors": [
  19. {
  20. "name": "Chad Walker",
  21. "email": "chad@chad-cat-lore-eddie.com",
  22. "url": "https://github.com/chad3814"
  23. },
  24. {
  25. "name": "Nikita Vasilyev",
  26. "email": "me@elv1s.ru"
  27. },
  28. {
  29. "name": "Davide P. Cervone"
  30. },
  31. {
  32. "name": "Forbes Lindesay"
  33. }
  34. ],
  35. "repository": "jsakas/CSSStyleDeclaration",
  36. "bugs": "https://github.com/jsakas/CSSStyleDeclaration/issues",
  37. "directories": {
  38. "lib": "./lib"
  39. },
  40. "main": "./lib/CSSStyleDeclaration.js",
  41. "dependencies": {
  42. "cssom": "0.3.x"
  43. },
  44. "devDependencies": {
  45. "babel-generator": "~6.11.4",
  46. "babel-traverse": "~6.13.0",
  47. "babel-types": "~6.13.0",
  48. "babylon": "~6.8.4",
  49. "nodeunit": "~0.8.0",
  50. "resolve": "~1.1.7"
  51. },
  52. "scripts": {
  53. "test": "node ./scripts/generate_properties.js && node ./scripts/generate_valid_properties.js && nodeunit tests",
  54. "prepare": "node ./scripts/generate_properties.js && node ./scripts/generate_valid_properties.js"
  55. },
  56. "license": "MIT"
  57. }