fix(cmd): bin/slap.js -> slap.js

This commit is contained in:
Dan Kaplun 2015-06-02 22:14:05 -04:00
parent 986b08177c
commit 9dae33d021
3 changed files with 7 additions and 7 deletions

View File

@ -1,3 +0,0 @@
#!/usr/bin/env node
module.exports = require('../lib/cli')().done();

View File

@ -5,11 +5,11 @@
"preferGlobal": true,
"main": "lib/cli.js",
"bin": {
"slap": "./bin/slap.js"
"slap": "./slap.js"
},
"scripts": {
"start": "./bin/slap.js",
"debug": "node-debug ./bin/slap.js",
"start": "./slap.js",
"debug": "node-debug ./slap.js",
"test": "test/index.js",
"cover": "istanbul cover test/index.js"
},
@ -31,7 +31,7 @@
"lodash": "^2.4.1",
"longjohn": "^0.2.4",
"mkdirp": "^0.5.0",
"node-clap": "^0.0.4",
"node-clap": "^0.0.5",
"rc": "^1.0.0",
"slap-clipboard-plugin": "^0.0.10",
"text-buffer": "^6.1.3",

3
slap.js Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env node
module.exports = require('./lib/cli')().done();