package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "postcss-modules-local-by-default",
  3. "version": "3.0.3",
  4. "description": "A CSS Modules transform to make local scope the default",
  5. "main": "index.js",
  6. "engines": {
  7. "node": ">= 6"
  8. },
  9. "keywords": [
  10. "css-modules",
  11. "postcss",
  12. "css",
  13. "postcss-plugin"
  14. ],
  15. "author": "Mark Dalgleish",
  16. "license": "MIT",
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/css-modules/postcss-modules-local-by-default.git"
  20. },
  21. "prettier": {
  22. "singleQuote": true,
  23. "trailingComma": "es5"
  24. },
  25. "dependencies": {
  26. "icss-utils": "^4.1.1",
  27. "postcss": "^7.0.32",
  28. "postcss-selector-parser": "^6.0.2",
  29. "postcss-value-parser": "^4.1.0"
  30. },
  31. "devDependencies": {
  32. "chokidar-cli": "^1.2.3",
  33. "codecov.io": "^0.1.6",
  34. "coveralls": "^3.1.0",
  35. "eslint": "^5.16.0",
  36. "istanbul": "^0.4.5",
  37. "tape": "^5.0.1"
  38. },
  39. "scripts": {
  40. "lint": "eslint index.js test.js",
  41. "pretest": "yarn lint",
  42. "test": "tape test.js",
  43. "autotest": "chokidar index.js test.js -c 'yarn test'",
  44. "precover": "yarn lint",
  45. "cover": "istanbul cover test.js",
  46. "travis": "yarn lint && yarn cover -- --report lcovonly",
  47. "prepublish": "yarn test"
  48. },
  49. "files": [
  50. "index.js"
  51. ]
  52. }