npmrc 0.2.0

Read and parse .npmrc files.
Documentation
1
2
3
4
5
6
extern crate npmrc;

fn main() {
  let file = npmrc::read().unwrap();
  println!("{:?}", file);
}