npm: prepare 1.0.5
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@
|
||||
"name": "nexe",
|
||||
"description": "create single executables out of your [node/io].js applications",
|
||||
"license": "MIT",
|
||||
"version": "1.0.4",
|
||||
"version": "1.0.5",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Criag Condon",
|
||||
|
||||
Binary file not shown.
@@ -1,17 +0,0 @@
|
||||
/**
|
||||
* Test Express with nexe
|
||||
**/
|
||||
|
||||
console.log('express init');
|
||||
|
||||
var express = require('express');
|
||||
|
||||
var app = express();
|
||||
|
||||
app.get('/', function(req, res) {
|
||||
res.send('It works!');
|
||||
});
|
||||
|
||||
app.listen(8000, function() {
|
||||
console.log('Listening on port 8000');
|
||||
});
|
||||
@@ -1,24 +0,0 @@
|
||||
{
|
||||
"name": "express-test",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"nexe": {
|
||||
"input": "./index.js",
|
||||
"output": "express-test^$",
|
||||
"temp": "src",
|
||||
"runtime": {
|
||||
"framework": "nodejs",
|
||||
"version": "5.5.0",
|
||||
"ignoreFlags": true
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"express": "^4.13.4"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user