package.json 1021 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "regedit",
  3. "version": "3.0.0",
  4. "description": "Read, Write, List and do all sorts of funky stuff to the windows registry using node.js and windows script host",
  5. "keywords": [
  6. "windows",
  7. "registry"
  8. ],
  9. "main": "index.js",
  10. "scripts": {
  11. "lint": "eslint . --fix",
  12. "lint:src": "eslint . --fix --ignore-pattern test/",
  13. "lint:test": "eslint test --fix",
  14. "test": "mocha -R spec",
  15. "prepush": "npm run lint"
  16. },
  17. "dependencies": {
  18. "debug": "^2.1.1",
  19. "if-async": "^3.7.4",
  20. "stream-slicer": "0.0.6",
  21. "through2": "^0.6.3"
  22. },
  23. "author": "Yaniv Kessler",
  24. "bugs": {
  25. "url": "https://github.com/ironSource/node-regedit/issues"
  26. },
  27. "os": [
  28. "win32"
  29. ],
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/ironSource/node-regedit"
  33. },
  34. "homepage": "https://github.com/ironSource/node-regedit",
  35. "license": "MIT",
  36. "devDependencies": {
  37. "eslint": "^3.19.0",
  38. "husky": "^0.13.4",
  39. "mocha": "^2.3.4",
  40. "should": "^4.4.2"
  41. }
  42. }