package.json 644 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "css-unit-converter",
  3. "version": "1.1.1",
  4. "description": "Converts CSS values from one unit to another",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test/test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/andyjansson/css-unit-converter.git"
  12. },
  13. "keywords": [
  14. "css",
  15. "value",
  16. "unit",
  17. "converter",
  18. "convert"
  19. ],
  20. "author": "Andy Jansson",
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/andyjansson/css-unit-converter/issues"
  24. },
  25. "homepage": "https://github.com/andyjansson/css-unit-converter",
  26. "devDependencies": {
  27. "tape": "^4.6.3"
  28. }
  29. }