package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "postcss-modules-local-by-default",
  3. "version": "1.2.0",
  4. "description": "A CSS Modules transform to make local scope the default",
  5. "keywords": [
  6. "css-modules",
  7. "postcss",
  8. "css",
  9. "postcss-plugin"
  10. ],
  11. "author": "Mark Dalgleish",
  12. "license": "MIT",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/css-modules/postcss-modules-local-by-default.git"
  16. },
  17. "dependencies": {
  18. "css-selector-tokenizer": "^0.7.0",
  19. "postcss": "^6.0.1"
  20. },
  21. "devDependencies": {
  22. "chokidar-cli": "^1.0.1",
  23. "codecov.io": "^0.1.2",
  24. "coveralls": "^2.11.2",
  25. "eslint": "^3.19.0",
  26. "istanbul": "^0.4.5",
  27. "tape": "^4.0.0"
  28. },
  29. "scripts": {
  30. "lint": "eslint index.js test.js",
  31. "pretest": "npm run lint",
  32. "test": "tape test.js",
  33. "autotest": "chokidar index.js test.js -c 'npm test'",
  34. "precover": "npm run lint",
  35. "cover": "istanbul cover test.js",
  36. "travis": "npm run cover -- --report lcovonly",
  37. "prepublish": "npm prune && npm test",
  38. "publish-patch": "npm prune && npm test && npm version patch && git push && git push --tags && npm publish"
  39. },
  40. "files": [
  41. "index.js"
  42. ]
  43. }