66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "nexe",
|
|
"description": "Create a single executable out of your Node.js application",
|
|
"license": "MIT",
|
|
"version": "2.0.0-rc.3",
|
|
"contributors": [
|
|
"Craig Condon <craig.j.condon@gmail.com> (http://crcn.io)",
|
|
"Jared Allard <jaredallard@outlook.com>",
|
|
"Caleb Boyd <caleb.boyd@hotmail.com>"
|
|
],
|
|
"scripts": {
|
|
"nexe-build": "ts-node tasks/build",
|
|
"prebuild": "rimraf lib && npm run lint",
|
|
"prepublish": "npm test && npm run build",
|
|
"test": "mocha test/**/*.spec.ts",
|
|
"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",
|
|
"source-map-support.js"
|
|
],
|
|
"main": "index.js",
|
|
"bin": {
|
|
"nexe": "index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"app-builder": "^5.1.0",
|
|
"chalk": "^1.1.3",
|
|
"download": "^6.2.0",
|
|
"fuse-box": "2.2.31",
|
|
"globby": "^6.1.0",
|
|
"minimist": "^1.2.0",
|
|
"mkdirp": "^0.5.1",
|
|
"ora": "^1.2.0",
|
|
"pifi": "1.0.0",
|
|
"rimraf": "^2.6.1",
|
|
"uglify-js": "3.0.28"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bluebird": "^3.5.8",
|
|
"@types/chai": "^4.0.4",
|
|
"@types/chalk": "^0.4.31",
|
|
"@types/globby": "^0.6.0",
|
|
"@types/minimist": "^1.2.0",
|
|
"@types/mkdirp": "^0.3.29",
|
|
"@types/mocha": "^2.2.42",
|
|
"@types/ora": "^0.3.31",
|
|
"@types/pify": "0.0.28",
|
|
"@types/rimraf": "0.0.28",
|
|
"chai": "^4.1.2",
|
|
"got": "^7.1.0",
|
|
"mocha": "^3.5.0",
|
|
"prettier": "^1.6.1",
|
|
"ts-node": "3.3.0",
|
|
"typescript": "^2.4.1"
|
|
}
|
|
}
|