package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "postcss-less",
  3. "version": "6.0.0",
  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": ">=12"
  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=high",
  24. "test": "ava"
  25. },
  26. "files": [
  27. "lib",
  28. "README.md",
  29. "LICENSE"
  30. ],
  31. "dependencies": {},
  32. "devDependencies": {
  33. "@commitlint/cli": "^12.1.4",
  34. "@commitlint/config-conventional": "^12.1.4",
  35. "ava": "^3.15.0",
  36. "cheerio": "^1.0.0-rc.10",
  37. "eslint-config-shellscape": "^2.0.2",
  38. "eslint-plugin-filenames": "^1.2.0",
  39. "is-absolute-url": "^3.0.0",
  40. "less": "^4.1.1",
  41. "lint-staged": "^11.0.0",
  42. "node-fetch": "^2.6.1",
  43. "nyc": "^15.1.0",
  44. "postcss": "^8.3.5",
  45. "postcss-parser-tests": "^8.3.5",
  46. "pre-commit": "^1.2.2",
  47. "url-join": "^4.0.0"
  48. },
  49. "peerDependencies": {
  50. "postcss": "^8.3.5"
  51. },
  52. "keywords": [
  53. "css",
  54. "postcss",
  55. "postcss-syntax",
  56. "parser",
  57. "less"
  58. ],
  59. "ava": {
  60. "files": [
  61. "!**/fixtures/**",
  62. "!**/helpers/**"
  63. ]
  64. },
  65. "lint-staged": {
  66. "*.js": [
  67. "eslint --fix"
  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. }