electron-wix-msi
Version:
Creates an MSI installer for your Electron app
84 lines (83 loc) • 2.15 kB
JSON
{
"name": "electron-wix-msi",
"version": "5.0.0",
"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": {
"prepublish": "npm run build",
"build": "tsc --pretty",
"test": "npm run lint && jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"harness": "npm run build && node ./harness/harness.js"
},
"dependencies": {
"debug": "^4.3.4",
"fs-extra": "^10.0.1",
"klaw": "^4.0.1",
"lodash": "^4.17.21",
"rcedit": "^3.0.1",
"rcinfo": "^0.1.3",
"semver": "^7.3.5",
"uuid": "^8.3.2"
},
"optionalDependencies": {
"@bitdisaster/exe-icon-extractor": "^1.0.10"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/graceful-fs": "^4.1.5",
"@types/jest": "^27.4.1",
"@types/klaw": "^3.0.3",
"@types/lodash": "^4.14.181",
"@types/mock-fs": "^4.13.1",
"@types/node": "^14.18.12",
"@types/semver": "^7.3.9",
"@types/uuid": "^8.3.4",
"coveralls": "^3.1.1",
"jest": "^27.5.1",
"jest-environment-node-debug": "^2.0.0",
"mock-fs": "^5.1.2",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"typescript": "^4.6.3"
},
"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"
]
}
}