56 lines
1.3 KiB
JSON
56 lines
1.3 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": {
|
|
"prebuild": "npm run clean",
|
|
"clean": "rimraf lib",
|
|
"build": "babel src -d lib --copy-files",
|
|
"lint": "standard index.js ./src/**/* --fix",
|
|
"test": "npm run build && mocha"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/nexe/nexe.git"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "index.js",
|
|
"bin": {
|
|
"nexe": "index.js"
|
|
},
|
|
"dependencies": {
|
|
"app-builder": "^5.1.0",
|
|
"bluebird": "^3.5.0",
|
|
"chalk": "^1.1.3",
|
|
"download": "^6.2.0",
|
|
"globby": "^6.1.0",
|
|
"html-loader": "^0.4.5",
|
|
"json-loader": "^0.5.4",
|
|
"memory-fs": "^0.4.1",
|
|
"minimist": "^1.2.0",
|
|
"mkdirp": "^0.5.1",
|
|
"nigel": "^2.0.2",
|
|
"ora": "^1.2.0",
|
|
"raw-loader": "^0.5.1",
|
|
"rimraf": "^2.6.1",
|
|
"tar": "^3.1.3",
|
|
"webpack": "^2.3.3",
|
|
"xbin-loader": "^1.0.1"
|
|
},
|
|
"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"
|
|
}
|
|
}
|