1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! An NPM dependency resolver for building `node_modules/` trees and
//! extracting them to their final resting place.

pub use edge::*;
pub use error::*;
pub use graph::*;
pub use into_kdl::IntoKdl;
pub use lockfile::*;
pub use maintainer::*;
pub use node::*;
#[cfg(target_arch = "wasm32")]
mod wasm;

mod edge;
mod error;
mod graph;
mod into_kdl;
mod lockfile;
mod maintainer;
mod node;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;