1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
[package]
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>",
"Tom Tromey <tom@tromey.com>",
]
categories = [
"development-tools::debugging",
"parser-implementations",
]
description = "Parse the `mappings` string from a source map."
keywords = [
"sourcemap",
"source",
"map",
"vlq",
]
license = "BSD-3-Clause"
name = "source-map-mappings"
readme = "./README.md"
repository = "https://github.com/mozilla/source-map"
version = "0.5.0"
[dependencies]
vlq = "0.5.1"
[dev-dependencies]
quickcheck = "0.5.0"
[profile.release]
debug = true
|