electron-wix-msi
Version:
Creates an MSI installer for your Electron app
87 lines (86 loc) • 2.21 kB
JSON
{
"name": "electron-wix-msi",
"version": "5.1.3",
"description": "Creates an MSI installer for your Electron app",
"license": "MIT",
"repository": "https://github.com/felixrieseberg/electron-wix-msi",
"author": {
"name": "Felix Rieseberg",
"email": "felix@felixrieseberg.com",
"url": "https://www.felixrieseberg.com"
},
"keywords": [
"wix",
"msi"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc --pretty",
"test": "npm run lint && jest",
"lint": "eslint .",
"harness": "npm run build && node ./harness/harness.js",
"prettier": "npx prettier --write \"**/*.ts\""
},
"dependencies": {
"@electron/windows-sign": "^1.1.2",
"debug": "^4.3.4",
"fs-extra": "^10.1.0",
"klaw": "^4.1.0",
"lodash": "^4.17.21",
"rcedit": "^4.0.1",
"rcinfo": "^0.1.3",
"semver": "^7.6.0"
},
"optionalDependencies": {
"@bitdisaster/exe-icon-extractor": "^1.0.10"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/fs-extra": "^9.0.13",
"@types/graceful-fs": "^4.1.9",
"@types/jest": "^29.5.12",
"@types/klaw": "^3.0.6",
"@types/lodash": "^4.14.202",
"@types/mock-fs": "^4.13.4",
"@types/node": "^14.18.63",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-node-debug": "^2.0.0",
"mock-fs": "^5.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.1"
},
"engines": {
"node": ">=14.0.0"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"testPathIgnorePatterns": [
"\\\\node_modules\\\\",
"__tests__/fixture",
"__tests__/mocks",
"__tests__/test-utils"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/interfaces.ts",
"!src/index.ts"
]
}
}