49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
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": {
|
|
"clean": "rimraf lib",
|
|
"prebuild": "npm run clean && npm run lint",
|
|
"build": "babel src -d lib --copy-files",
|
|
"lint": "standard index.js ./src/**/* --fix",
|
|
"test": "mocha"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/nexe/nexe.git"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/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",
|
|
"mkdirp": "^0.5.1",
|
|
"request": "^2.81.0",
|
|
"rimraf": "^2.6.1",
|
|
"tar": "^2.2.1",
|
|
"webpack": "^2.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.24.1",
|
|
"babel-core": "^6.24.1",
|
|
"babel-preset-env": "^1.3.3",
|
|
"mocha": "^3.2.0",
|
|
"standard": "^10.0.1"
|
|
}
|
|
}
|