{ "name": "nexe", "description": "Create a single executable out of your Node.js application", "license": "MIT", "version": "2.0.0-beta.7", "contributors": [ "Craig Condon (http://crcn.io)", "Jared Allard ", "Caleb Boyd " ], "scripts": { "task-build-windows": "node -e \"require('.').compile({ empty: true })\"", "log-node-version": "node -e \"console.log([process.platform, process.arch, process.version.slice(1)].join('-'))\"", "prebuild": "rimraf lib && npm run lint", "prepublish": "npm run build", "lint": "prettier --parser typescript --no-semi --print-width 100 --single-quote --write \"src/**/*.ts\"", "build": "tsc --declaration" }, "repository": { "type": "git", "url": "git://github.com/nexe/nexe.git" }, "files": [ "lib" ], "main": "index.js", "bin": { "nexe": "index.js" }, "engines": { "node": ">=6" }, "dependencies": { "app-builder": "^5.1.0", "bluebird": "^3.5.0", "chalk": "^1.1.3", "download": "^6.2.0", "fuse-box": "^2.2.1", "globby": "^6.1.0", "memory-fs": "^0.4.1", "minimist": "^1.2.0", "mkdirp": "^0.5.1", "nigel": "^2.0.2", "ora": "^1.2.0", "rimraf": "^2.6.1", "tar": "^3.1.3" }, "devDependencies": { "@types/bluebird": "^3.5.8", "@types/chalk": "^0.4.31", "@types/globby": "^0.6.0", "@types/minimist": "^1.2.0", "@types/mkdirp": "^0.3.29", "@types/ora": "^0.3.31", "@types/rimraf": "0.0.28", "mocha": "^3.2.0", "prettier": "^1.4.4", "typescript": "^2.4.1" } }