-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.32 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "iterum",
"version": "2.0.0",
"description": "handling iterables like Arrays.",
"main": "src/index.js",
"scripts": {
"mocha": "mocha --recursive",
"lint": "eslint .",
"tst": "npm run lint && npm run mocha",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec --recursive && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"istanbul": "istanbul cover _mocha -- -R spec --recursive",
"test": "npm run lint && npm run coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xgbuils/iterum.git"
},
"keywords": [
"iterable",
"array",
"lazy",
"functional",
"es6",
"es2015"
],
"author": "Xavier Garcia Buils <xgbuils@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xgbuils/iterum/issues"
},
"homepage": "https://github.com/xgbuils/iterum#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.1.0",
"coveralls": "^2.13.1",
"es-iter": "^1.0.0",
"eslint": "^4.3.0",
"imlazy": "^6.3.1",
"immutable": "^3.8.1",
"istanbul": "^0.4.5",
"iterum": "./",
"mocha": "^3.4.2",
"ramda": "^0.24.1",
"sinon": "^2.3.8"
},
"dependencies": {
"is-empty-iterable": "^1.0.0",
"iterarray": "^0.4.0"
},
"engines": {
"node": "^6.0.0"
}
}