You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
753 B
27 lines
753 B
{ |
|
"name": "rust-result", |
|
"version": "1.0.0", |
|
"author": "Maciej Małecki <me@mmalecki.com>", |
|
"description": "Mimic Rust's `std::result`", |
|
"main": "index", |
|
"homepage": "https://github.com/mmalecki/rust-result.js", |
|
"repository": "git://github.com/mmalecki/rust-result.js.git", |
|
"bugs": { |
|
"url": "https://github.com/mmalecki/rust-result.js/issues", |
|
"email": "raynos2@gmail" |
|
}, |
|
"scripts": { |
|
"test": "node test.js", |
|
"cover": "istanbul cover --print detail --report html test.js", |
|
"view-cover": "istanbul report html && opn ./coverage/index.html" |
|
}, |
|
"license": "MIT", |
|
"devDependencies": { |
|
"istanbul": "^0.3.5", |
|
"opn": "^1.0.0", |
|
"tape": "^3.0.1" |
|
}, |
|
"dependencies": { |
|
"individual": "^2.0.0" |
|
} |
|
}
|
|
|