-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 719 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 719 Bytes
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
{
"name": "rusty-iterator-utils",
"version": "1.0.0",
"description": "A collection of utility functions for iterables and iterators inspired by Rust's Iterator trait",
"main": "src/index.js",
"scripts": {
"test": "jasmine",
"coverage": "slim-cover --include src"
},
"author": "Trevor Behlman",
"license": "MIT",
"files": [
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tsbehlman/rusty-iterator-utils.git"
},
"bugs": {
"url": "https://github.com/tsbehlman/rusty-iterator-utils/issues"
},
"homepage": "https://github.com/tsbehlman/rusty-iterator-utils#readme",
"devDependencies": {
"jasmine": "^3.3.1",
"slim-cover": "^1.5.1"
}
}