web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
956 B

  1. {
  2. "name": "css.escape",
  3. "version": "1.5.1",
  4. "description": "A robust polyfill for the `CSS.escape` utility method as defined in CSSOM.",
  5. "homepage": "https://mths.be/cssescape",
  6. "main": "css.escape.js",
  7. "keywords": [
  8. "string",
  9. "unicode",
  10. "identifier",
  11. "css",
  12. "cssom",
  13. "polyfill"
  14. ],
  15. "license": "MIT",
  16. "author": {
  17. "name": "Mathias Bynens",
  18. "url": "https://mathiasbynens.be/"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/mathiasbynens/CSS.escape.git"
  23. },
  24. "bugs": "https://github.com/mathiasbynens/CSS.escape/issues",
  25. "files": [
  26. "LICENSE-MIT.txt",
  27. "css.escape.js"
  28. ],
  29. "scripts": {
  30. "test": "node tests/tests.js",
  31. "cover": "istanbul cover --report html --verbose --dir coverage tests/tests.js",
  32. "coveralls": "istanbul cover --verbose --dir coverage tests/tests.js && coveralls < coverage/lcov.info; rm -rf coverage/lcov*"
  33. },
  34. "devDependencies": {
  35. "coveralls": "^2.11.4",
  36. "istanbul": "^0.4.1"
  37. }
  38. }