37 lines
844 B
JSON
37 lines
844 B
JSON
{
|
|
"name": "nexe",
|
|
"description": "Create a single executable out of your Node.js application",
|
|
"license": "MIT",
|
|
"version": "2.0.0-beta.1",
|
|
"contributors": [
|
|
"Craig Condon <craig.j.condon@gmail.com> (http://crcn.io)",
|
|
"Jared Allard <jaredallard@outlook.com>",
|
|
"Caleb Boyd <caleb.boyd@hotmail.com>"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint index.js ./src/**/*",
|
|
"test": "npm run lint"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/nexe/nexe.git"
|
|
},
|
|
"main": "src/nexe.js",
|
|
"bin": {
|
|
"nexe": "index.js"
|
|
},
|
|
"dependencies": {
|
|
"app-builder": "^5.1.0",
|
|
"bluebird": "^3.5.0",
|
|
"chalk": "^1.1.3",
|
|
"memory-fs": "^0.4.1",
|
|
"minimist": "^1.2.0",
|
|
"request": "^2.81.0",
|
|
"tar": "^2.2.1",
|
|
"webpack": "^2.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^3.19.0"
|
|
}
|
|
}
|