Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
187721a511 | |||
c457cbff6a |
36
README.md
36
README.md
@ -1,16 +1,36 @@
|
|||||||
# projectinfo
|
# projectinfo
|
||||||
returns a projectoinfo object for a directory path. TypeScript ready.
|
gather information about projects. supports npm, git etc.
|
||||||
|
|
||||||
## Status
|
## Availabililty
|
||||||
[](https://gitlab.com/pushrocks/projectinfo/commits/master)
|
[](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)
|
||||||
[](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
|
## Usage
|
||||||
|
Use TypeScript for best in class instellisense.
|
||||||
|
|
||||||
```TypeScript
|
```javascript
|
||||||
var projectinfo = require("projectinfo")
|
import { ProjectInfo } from 'projectinfo'
|
||||||
|
|
||||||
myProject = new ProjectinfoNpm("/somepath/to/projectroot");
|
let myProjectInfo = new ProjectInfo('/some/path/to/proejct')
|
||||||
myProject.version // displays version
|
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)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "projectinfo",
|
"name": "projectinfo",
|
||||||
"version": "3.0.0",
|
"version": "3.0.1",
|
||||||
"description": "gather information about projects. supports npm, git etc.",
|
"description": "gather information about projects. supports npm, git etc.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"typings": "dist/index.d.ts",
|
"typings": "dist/index.d.ts",
|
||||||
|
Reference in New Issue
Block a user