update README
This commit is contained in:
		
							
								
								
									
										38
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										38
									
								
								README.md
									
									
									
									
									
								
							@@ -1,16 +1,36 @@
 | 
			
		||||
# projectinfo
 | 
			
		||||
returns a projectoinfo object for a directory path. TypeScript ready.
 | 
			
		||||
gather information about projects. supports npm, git etc.
 | 
			
		||||
 | 
			
		||||
## Status
 | 
			
		||||
[](https://gitlab.com/pushrocks/projectinfo/commits/master)
 | 
			
		||||
## Availabililty
 | 
			
		||||
[](https://www.npmjs.com/package/projectinfo)
 | 
			
		||||
[](https://GitLab.com/pushrocks/projectinfo)
 | 
			
		||||
[](https://github.com/pushrocks/projectinfo)
 | 
			
		||||
[](https://pushrocks.gitlab.io/projectinfo/)
 | 
			
		||||
 | 
			
		||||
## Status for master
 | 
			
		||||
[](https://GitLab.com/pushrocks/projectinfo/commits/master)
 | 
			
		||||
[](https://GitLab.com/pushrocks/projectinfo/commits/master)
 | 
			
		||||
[](https://www.npmjs.com/package/projectinfo)
 | 
			
		||||
[](https://david-dm.org/pushrocks/projectinfo)
 | 
			
		||||
[](https://david-dm.org/pushrocks/projectinfo#info=devDependencies)
 | 
			
		||||
[](https://www.bithound.io/github/pushrocks/projectinfo/master/dependencies/npm)
 | 
			
		||||
[](https://www.bithound.io/github/pushrocks/projectinfo)
 | 
			
		||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
 | 
			
		||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
 | 
			
		||||
[](http://standardjs.com/)
 | 
			
		||||
 | 
			
		||||
## Usage
 | 
			
		||||
Use TypeScript for best in class instellisense.
 | 
			
		||||
 | 
			
		||||
```TypeScript
 | 
			
		||||
var projectinfo = require("projectinfo")
 | 
			
		||||
```javascript
 | 
			
		||||
import { ProjectInfo } from 'projectinfo'
 | 
			
		||||
 | 
			
		||||
myProject = new ProjectinfoNpm("/somepath/to/projectroot");
 | 
			
		||||
myProject.version // displays version
 | 
			
		||||
```
 | 
			
		||||
let myProjectInfo = new ProjectInfo('/some/path/to/proejct')
 | 
			
		||||
let npmName = myProjectInfo.npm.name // returns npm name from package.json
 | 
			
		||||
let npmVersion = myProjectInfo.npm.version // returns version from package.json
 | 
			
		||||
let gitRepo = myProjectInfo.git.gitrepo // returns the name of the gitrepo
 | 
			
		||||
let gitRemotes = myProjectInfo.git.remotes // returns array with registered remotes
 | 
			
		||||
 | 
			
		||||
// for more info check out the module in your IDE with TypeScript intellisense enabled
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
[](https://push.rocks)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user