package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "cssstyle",
  3. "description": "CSSStyleDeclaration Object Model implementation",
  4. "keywords": [
  5. "CSS",
  6. "CSSStyleDeclaration",
  7. "StyleSheet"
  8. ],
  9. "version": "1.4.0",
  10. "homepage": "https://github.com/jsakas/CSSStyleDeclaration",
  11. "maintainers": [
  12. {
  13. "name": "Jon Sakas",
  14. "email": "jon.sakas@gmail.com",
  15. "url": "https://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": "Rafał Ruciński",
  26. "email": "fatfisz@gmail.com",
  27. "url": "https://fatfisz.com"
  28. },
  29. {
  30. "name": "Nikita Vasilyev",
  31. "email": "me@elv1s.ru"
  32. },
  33. {
  34. "name": "Davide P. Cervone"
  35. },
  36. {
  37. "name": "Forbes Lindesay"
  38. }
  39. ],
  40. "repository": "jsakas/CSSStyleDeclaration",
  41. "bugs": "https://github.com/jsakas/CSSStyleDeclaration/issues",
  42. "directories": {
  43. "lib": "./lib"
  44. },
  45. "main": "./lib/CSSStyleDeclaration.js",
  46. "dependencies": {
  47. "cssom": "0.3.x"
  48. },
  49. "devDependencies": {
  50. "babel-generator": "~6.26.1",
  51. "babel-traverse": "~6.26.0",
  52. "babel-types": "~6.26.0",
  53. "babylon": "~6.18.0",
  54. "eslint": "5.13.0",
  55. "eslint-config-prettier": "4.0.0",
  56. "eslint-plugin-prettier": "3.0.1",
  57. "nodeunit": "~0.11.3",
  58. "npm-run-all": "^4.1.5",
  59. "prettier": "1.16.4",
  60. "request": "^2.88.0",
  61. "resolve": "~1.8.1"
  62. },
  63. "scripts": {
  64. "download": "node ./scripts/download_latest_properties.js && eslint lib/allProperties.js --fix",
  65. "generate": "run-p generate:*",
  66. "generate:implemented_properties": "node ./scripts/generate_implemented_properties.js",
  67. "generate:properties": "node ./scripts/generate_properties.js",
  68. "lint": "npm run generate && eslint . --max-warnings 0",
  69. "lint:fix": "eslint . --fix --max-warnings 0",
  70. "prepublishOnly": "npm run test-ci",
  71. "test": "npm run generate && nodeunit tests",
  72. "test-ci": "npm run lint && npm run test"
  73. },
  74. "license": "MIT"
  75. }