package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "is-color-stop",
  3. "description": "Check if a string is CSS color stop",
  4. "version": "1.1.0",
  5. "main": "index.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "scripts": {
  10. "test": "nyc --reporter=lcov --reporter=text mocha",
  11. "coveralls": "cat ./coverage/lcov.info | coveralls",
  12. "lint": "eslint --ext .js lib util ./index.js"
  13. },
  14. "devDependencies": {
  15. "coveralls": "^2.13.1",
  16. "eslint": "^4.3.0",
  17. "eslint-config-airbnb": "^15.1.0",
  18. "eslint-plugin-import": "^2.7.0",
  19. "mocha": "^3.4.2",
  20. "nyc": "^11.0.3"
  21. },
  22. "dependencies": {
  23. "css-color-names": "^0.0.4",
  24. "hex-color-regex": "^1.1.0",
  25. "hsl-regex": "^1.0.0",
  26. "hsla-regex": "^1.0.0",
  27. "rgb-regex": "^1.0.1",
  28. "rgba-regex": "^1.0.0"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://github.com/pigcan/is-color-stop.git"
  33. },
  34. "keywords": [
  35. "color-stop",
  36. "is-color"
  37. ],
  38. "author": "pigcan <jiangjay818@gmail.com>",
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/pigcan/is-color-stop/issues"
  42. },
  43. "homepage": "https://github.com/pigcan/is-color-stop#readme"
  44. }