package.json 714 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "nsis-compat-tester",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "main.html",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "serve": "http-server ./dist/",
  9. "start": "DEBUG=nsis-compat-updater run --mirror https://npm.taobao.org/mirrors/nwjs/ .",
  10. "dist": "build --win --x86 --mirror https://npm.taobao.org/mirrors/nwjs/ ."
  11. },
  12. "author": "evshiron",
  13. "license": "MIT",
  14. "dependencies": {
  15. "nsis-compat-updater": "^1.0.0"
  16. },
  17. "devDependencies": {
  18. "http-server": "^0.9.0",
  19. "nwjs-builder-phoenix": "^1.9.3"
  20. },
  21. "build": {
  22. "nwFlavor": "sdk",
  23. "targets": [
  24. "nsis"
  25. ],
  26. "nsis": {
  27. "diffUpdaters": true
  28. }
  29. }
  30. }