package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "renderkid",
  3. "version": "2.0.7",
  4. "description": "Stylish console.log for node",
  5. "main": "lib/RenderKid.js",
  6. "dependencies": {
  7. "css-select": "^4.1.3",
  8. "dom-converter": "^0.2.0",
  9. "htmlparser2": "^6.1.0",
  10. "lodash": "^4.17.21",
  11. "strip-ansi": "^3.0.1"
  12. },
  13. "devDependencies": {
  14. "@babel/core": "^7.14.5",
  15. "@babel/preset-env": "^7.14.5",
  16. "chai": "^4.3.4",
  17. "chai-changes": "^1.3.6",
  18. "chai-fuzzy": "^1.6.1",
  19. "coffeescript": "^2.5.1",
  20. "mocha": "^9.0.0",
  21. "sinon": "^11.1.1",
  22. "sinon-chai": "^3.7.0"
  23. },
  24. "scripts": {
  25. "test": "mocha \"test/**/*.coffee\"",
  26. "test:watch": "npm run test -- --watch",
  27. "compile": "coffee --bare --transpile --output ./lib ./src",
  28. "compile:watch": "coffee --watch --bare --transpile --output ./lib ./src",
  29. "watch": "npm run compile:watch & npm run test:watch",
  30. "prepublish": "npm run compile"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/AriaMinaei/RenderKid.git"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/AriaMinaei/RenderKid/issues"
  38. },
  39. "author": "Aria Minaei",
  40. "license": "MIT"
  41. }