package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "postcss-modules-values",
  3. "version": "1.3.0",
  4. "description": "PostCSS plugin for CSS Modules to pass arbitrary values between your module files",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "lint": "standard src test",
  8. "build": "babel --out-dir lib src",
  9. "autotest": "chokidar src test -c 'npm test'",
  10. "test": "mocha --compilers js:babel-core/register",
  11. "posttest": "npm run lint && npm run build",
  12. "travis": "npm run test",
  13. "prepublish": "npm run build"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/css-modules/postcss-modules-values.git"
  18. },
  19. "keywords": [
  20. "css",
  21. "modules",
  22. "postcss"
  23. ],
  24. "author": "Glen Maddern",
  25. "license": "ISC",
  26. "bugs": {
  27. "url": "https://github.com/css-modules/postcss-modules-values/issues"
  28. },
  29. "homepage": "https://github.com/css-modules/postcss-modules-values#readme",
  30. "devDependencies": {
  31. "babel-cli": "^6.5.2",
  32. "babel-core": "^6.5.2",
  33. "babel-plugin-add-module-exports": "^0.2.1",
  34. "babel-preset-es2015": "^6.3.13",
  35. "chokidar": "^1.2.0",
  36. "mocha": "^3.0.2",
  37. "standard": "^8.4.0"
  38. },
  39. "dependencies": {
  40. "icss-replace-symbols": "^1.1.0",
  41. "postcss": "^6.0.1"
  42. },
  43. "babel": {
  44. "presets": [
  45. "es2015"
  46. ],
  47. "plugins": [
  48. "add-module-exports"
  49. ]
  50. }
  51. }