package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "postcss-modules-values",
  3. "version": "3.0.0",
  4. "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files",
  5. "main": "src/index.js",
  6. "files": [
  7. "src"
  8. ],
  9. "scripts": {
  10. "lint": "eslint src test",
  11. "pretest": "yarn lint",
  12. "test": "mocha",
  13. "autotest": "chokidar src test -c 'npm test'",
  14. "cover": "nyc mocha",
  15. "travis": "yarn lint && yarn cover",
  16. "prepublishOnly": "yarn test"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/css-modules/postcss-modules-values.git"
  21. },
  22. "keywords": [
  23. "css",
  24. "modules",
  25. "postcss"
  26. ],
  27. "author": "Glen Maddern",
  28. "license": "ISC",
  29. "bugs": {
  30. "url": "https://github.com/css-modules/postcss-modules-values/issues"
  31. },
  32. "homepage": "https://github.com/css-modules/postcss-modules-values#readme",
  33. "devDependencies": {
  34. "chokidar-cli": "^1.0.1",
  35. "codecov.io": "^0.1.2",
  36. "coveralls": "^3.0.2",
  37. "eslint": "^5.9.0",
  38. "mocha": "^6.1.4",
  39. "nyc": "^14.1.0"
  40. },
  41. "dependencies": {
  42. "icss-utils": "^4.0.0",
  43. "postcss": "^7.0.6"
  44. }
  45. }