A tool for gathering project information, supporting npm, git, and more.
Go to file
2016-11-27 00:09:04 +01:00
dist added ProjectInfo main class 2016-11-26 23:18:33 +01:00
test update to meet newest standards 2016-11-26 14:45:56 +01:00
ts added ProjectInfo main class 2016-11-26 23:18:33 +01:00
.gitignore update smartfile 2016-10-27 19:43:54 +02:00
.gitlab-ci.yml update to meet newest standards 2016-11-26 14:45:56 +01:00
LICENSE Initial commit 2016-02-20 03:45:25 +01:00
npmextra.json update to meet newest standards 2016-11-26 14:45:56 +01:00
package.json 3.0.0 2016-11-26 23:18:46 +01:00
README.md update README 2016-11-27 00:09:04 +01:00
tslint.json update to meet newest standards 2016-11-26 14:45:56 +01:00

projectinfo

gather information about projects. supports npm, git etc.

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

import { ProjectInfo } from 'projectinfo'

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

npm