package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "postcss",
  3. "version": "5.2.18",
  4. "description": "Tool for transforming styles with JS plugins",
  5. "engines": {
  6. "node": ">=0.12"
  7. },
  8. "keywords": [
  9. "css",
  10. "postcss",
  11. "rework",
  12. "preprocessor",
  13. "parser",
  14. "source map",
  15. "transform",
  16. "manipulation",
  17. "transpiler"
  18. ],
  19. "author": "Andrey Sitnik <andrey@sitnik.ru>",
  20. "license": "MIT",
  21. "homepage": "http://postcss.org/",
  22. "repository": "postcss/postcss",
  23. "dependencies": {
  24. "chalk": "^1.1.3",
  25. "js-base64": "^2.1.9",
  26. "source-map": "^0.5.6",
  27. "supports-color": "^3.2.3"
  28. },
  29. "devDependencies": {
  30. "ava": "^0.17.0",
  31. "babel-core": "^6.24.0",
  32. "babel-eslint": "^7.1.1",
  33. "babel-plugin-add-module-exports": "^0.2.1",
  34. "babel-plugin-precompile-charcodes": "^1.0.0",
  35. "babel-preset-es2015": "^6.24.0",
  36. "chalk": "^1.1.3",
  37. "concat-with-sourcemaps": "^1.0.4",
  38. "del": "^2.2.2",
  39. "docdash": "^0.4.0",
  40. "eslint": "^3.18.0",
  41. "eslint-config-postcss": "^2.0.2",
  42. "fs-extra": "^1.0.0",
  43. "gulp": "^3.9.1",
  44. "gulp-ava": "^0.15.0",
  45. "gulp-babel": "^6.1.2",
  46. "gulp-changed": "^1.3.2",
  47. "gulp-eslint": "^3.0.1",
  48. "gulp-run": "^1.7.1",
  49. "gulp-sourcemaps": "^2.4.1",
  50. "jsdoc": "^3.4.3",
  51. "lint-staged": "^3.4.0",
  52. "postcss-parser-tests": "^5.0.11",
  53. "pre-commit": "^1.2.2",
  54. "run-sequence": "^1.2.2",
  55. "sinon": "^2.0.0",
  56. "strip-ansi": "^3.0.1",
  57. "yaspeller-ci": "^0.3.0"
  58. },
  59. "scripts": {
  60. "lint-staged": "lint-staged",
  61. "test": "gulp"
  62. },
  63. "main": "lib/postcss",
  64. "types": "lib/postcss.d.ts",
  65. "lint-staged": {
  66. "test/*.js": "eslint",
  67. "lib/*.es6": "eslint",
  68. "*.md": "yaspeller-ci"
  69. },
  70. "pre-commit": [
  71. "lint-staged"
  72. ],
  73. "browser": {
  74. "fs": false
  75. }
  76. }