package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "postcss-modules-extract-imports",
  3. "version": "1.2.1",
  4. "description": "A CSS Modules transform to extract local aliases for inline imports",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "build": "babel --out-dir lib src",
  11. "test": "jest --coverage",
  12. "precommit": "lint-staged",
  13. "prepublish": "yarn run test && yarn run build"
  14. },
  15. "lint-staged": {
  16. "*.js": [
  17. "prettier --single-quote --no-semi --write",
  18. "git add"
  19. ]
  20. },
  21. "babel": {
  22. "presets": [
  23. [
  24. "env",
  25. {
  26. "targets": {
  27. "node": 4
  28. }
  29. }
  30. ]
  31. ]
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/css-modules/postcss-modules-extract-imports.git"
  36. },
  37. "keywords": [
  38. "css-modules",
  39. "postcss",
  40. "plugin"
  41. ],
  42. "author": "Glen Maddern",
  43. "license": "ISC",
  44. "bugs": {
  45. "url": "https://github.com/css-modules/postcss-modules-extract-imports/issues"
  46. },
  47. "homepage": "https://github.com/css-modules/postcss-modules-extract-imports",
  48. "dependencies": {
  49. "postcss": "^6.0.1"
  50. },
  51. "devDependencies": {
  52. "babel-cli": "^6.24.1",
  53. "babel-eslint": "^7.2.2",
  54. "babel-jest": "^20.0.3",
  55. "babel-preset-env": "^1.5.1",
  56. "codecov.io": "^0.1.2",
  57. "coveralls": "^2.11.2",
  58. "husky": "^0.13.3",
  59. "jest": "^20.0.3",
  60. "lint-staged": "^3.4.2",
  61. "prettier": "^1.3.1"
  62. }
  63. }