Skip to content

Commit b1ca651

Browse files
committed
Added package json and codeine peer cmd
1 parent decc512 commit b1ca651

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

bin/codeine

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env node
2+
'use strict';
3+
4+
process.bin = process.title = 'codeine';
5+
6+
var pkg = require('../package.json');
7+
8+
process.stdout.write('Codeine Peer Version ' + pkg.version + '\n');
9+
process.exit();

package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "codeineNodePeer",
3+
"version": "1.0.0",
4+
"description": "NodeJs Peer for Codeine",
5+
"main": "lib",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/codeine-cd/codeineNodePeer.git"
9+
},
10+
"author": "Roi Ezra",
11+
"license": "MIT",
12+
"bugs": {
13+
"url": "https://github.com/codeine-cd/codeineNodePeer/issues"
14+
},
15+
"homepage": "https://github.com/codeine-cd/codeineNodePeer",
16+
"scripts": {
17+
"test": "grunt test"
18+
},
19+
"bin": {
20+
"codeine": "bin/codeine"
21+
}
22+
}

0 commit comments

Comments
 (0)