package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "postcss-less",
  3. "version": "4.0.1",
  4. "description": "LESS parser for PostCSS",
  5. "license": "MIT",
  6. "repository": "shellscape/postcss-less",
  7. "author": "Denys Kniazevych <webschik@gmail.com>",
  8. "maintainer": "Andrew Powell <andrew@shellscape.org>",
  9. "homepage": "https://github.com/shellscape/postcss-less",
  10. "bugs": "https://github.com/shellscape/postcss-less/issues",
  11. "main": "lib/index.js",
  12. "engines": {
  13. "node": ">=10"
  14. },
  15. "scripts": {
  16. "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
  17. "ci:lint": "npm run lint && npm run security",
  18. "ci:test": "npm run test",
  19. "commitlint": "commitlint",
  20. "commitmsg": "commitlint -e $GIT_PARAMS",
  21. "lint": "eslint --fix --cache lib test",
  22. "lint-staged": "lint-staged",
  23. "security": "npm audit --audit-level=moderate",
  24. "test": "ava"
  25. },
  26. "files": [
  27. "lib",
  28. "README.md",
  29. "LICENSE"
  30. ],
  31. "dependencies": {
  32. "postcss": "^8.1.2"
  33. },
  34. "devDependencies": {
  35. "@commitlint/cli": "^11.0.0",
  36. "@commitlint/config-conventional": "^11.0.0",
  37. "ava": "^3.13.0",
  38. "cheerio": "^1.0.0-rc.2",
  39. "eslint-config-shellscape": "^2.0.2",
  40. "eslint-plugin-filenames": "^1.2.0",
  41. "is-absolute-url": "^3.0.0",
  42. "less": "^3.8.1",
  43. "lint-staged": "^9.2.0",
  44. "node-fetch": "^2.6.1",
  45. "nyc": "^15.1.0",
  46. "postcss-parser-tests": "^8.3.1",
  47. "pre-commit": "^1.2.2",
  48. "standard-version": "^9.0.0",
  49. "url-join": "^4.0.0"
  50. },
  51. "keywords": [
  52. "css",
  53. "postcss",
  54. "postcss-syntax",
  55. "parser",
  56. "less"
  57. ],
  58. "ava": {
  59. "files": [
  60. "!**/fixtures/**",
  61. "!**/helpers/**"
  62. ]
  63. },
  64. "lint-staged": {
  65. "*.js": [
  66. "eslint --fix",
  67. "git add"
  68. ]
  69. },
  70. "nyc": {
  71. "include": [
  72. "lib/*.js"
  73. ],
  74. "exclude": [
  75. "lib/client*.js",
  76. "test/"
  77. ]
  78. },
  79. "pre-commit": "lint-staged"
  80. }