package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "node-sass",
  3. "version": "7.0.0",
  4. "libsass": "3.5.5",
  5. "description": "Wrapper around libsass",
  6. "license": "MIT",
  7. "bugs": "https://github.com/sass/node-sass/issues",
  8. "homepage": "https://github.com/sass/node-sass",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/sass/node-sass"
  12. },
  13. "author": {
  14. "name": "Andrew Nesbitt",
  15. "email": "andrewnez@gmail.com",
  16. "url": "http://andrew.github.com"
  17. },
  18. "engines": {
  19. "node": ">=12"
  20. },
  21. "main": "lib/index.js",
  22. "nodeSassConfig": {
  23. "binarySite": "https://github.com/sass/node-sass/releases/download"
  24. },
  25. "bin": {
  26. "node-sass": "bin/node-sass"
  27. },
  28. "gypfile": true,
  29. "scripts": {
  30. "coverage": "nyc npm run test",
  31. "install": "node scripts/install.js",
  32. "postinstall": "node scripts/build.js",
  33. "lint": "eslint bin/node-sass lib scripts test",
  34. "test": "mocha test/{*,**/**}.js",
  35. "build": "node scripts/build.js --force",
  36. "prepublishOnly ": "scripts/prepublish.js"
  37. },
  38. "files": [
  39. "bin",
  40. "binding.gyp",
  41. "lib",
  42. "scripts",
  43. "src",
  44. "test",
  45. "vendor"
  46. ],
  47. "keywords": [
  48. "css",
  49. "libsass",
  50. "preprocessor",
  51. "sass",
  52. "scss",
  53. "style"
  54. ],
  55. "dependencies": {
  56. "async-foreach": "^0.1.3",
  57. "chalk": "^4.1.2",
  58. "cross-spawn": "^7.0.3",
  59. "gaze": "^1.0.0",
  60. "get-stdin": "^4.0.1",
  61. "glob": "^7.0.3",
  62. "lodash": "^4.17.15",
  63. "meow": "^9.0.0",
  64. "nan": "^2.13.2",
  65. "node-gyp": "^7.1.0",
  66. "npmlog": "^5.0.0",
  67. "request": "^2.88.0",
  68. "sass-graph": "2.2.5",
  69. "stdout-stream": "^1.4.0",
  70. "true-case-path": "^1.0.2"
  71. },
  72. "devDependencies": {
  73. "eslint": "^8.0.0",
  74. "fs-extra": "^10.0.0",
  75. "mocha": "^9.0.1",
  76. "nyc": "^15.1.0",
  77. "rimraf": "^3.0.2",
  78. "unique-temp-dir": "^1.0.0"
  79. }
  80. }