File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
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 ( ) ;
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments