nbarikipoulos/wix-msi

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "wix-msi",
  "version": "0.6.1",
  "description": "Package node.js application to a standalone executable and pack it into a msi installer",
  "bin": {
    "wix-msi": "./bin/cli.js"
  },
  "main": "index.js",
  "scripts": {
    "gendoc": "markdown-toc -i README.md",
    "postinstall": "node ./wix-install.js",
    "lint": "standard",
    "test": "npm run lint"
  },
  "homepage": "https://github.com/nbarikipoulos/wix-msi#readme",
  "author": "Nicolas Barriquand <nicolas.barriquand@outlook.fr>",
  "license": "MIT",
  "keywords": [
    "wix",
    "wixtoolset",
    "msi",
    "msi installer",
    "windows installer",
    "installer",
    "cli",
    "bin",
    "npm",
    "node",
    "exe",
    "executable"
  ],
  "dependencies": {
    "axios": "^0.24.0",
    "colorette": "^2.0.19",
    "mustache": "^4.0.1",
    "pkg": "^5.5.2",
    "png-to-ico": "^2.1.8",
    "sharp": "^0.30.7",
    "unzipper": "^0.10.11",
    "uuid": "^8.3.0",
    "valid-url": "^1.0.9",
    "xmlbuilder2": "^3.0.2",
    "yargs": "^17.3.1"
  },
  "devDependencies": {
    "markdown-toc": "^1.2.0",
    "standard": "^17.0.0"
  },
  "files": [
    "/lib",
    "/util",
    "/cli",
    "/assets",
    "/doc",
    "/wix-install.js"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/nbarikipoulos/wix-msi.git"
  },
  "bugs": {
    "url": "https://github.com/nbarikipoulos/wix-msi/issues"
  },
  "os": [
    "win32"
  ],
  "cpu": [
    "x64"
  ],
  "engines": {
    "node": ">=14.0.0"
  }
}