package_json_schema 0.3.0

Parse content from `package.json` content and consume the result as a `PackageJson` struct.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![deny(clippy::all)]
#![deny(clippy::pedantic)]
#![deny(clippy::nursery)]
#![deny(clippy::cargo)]
#![allow(clippy::multiple_crate_versions)]

doc_comment::doctest!("../readme.md");

pub mod error;
pub mod package_json;
#[cfg(feature = "validate")]
mod utils;
pub use error::Error;
pub use error::Result;
pub use package_json::*;
#[cfg(feature = "validate")]
pub use validator;