-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 950 Bytes
/
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
{
"name": "iterablejs",
"version": "0.5.0",
"description": "Lazy-loading wrapper for iterable items and common functional programming operations",
"main": "dist/iterable.js",
"scripts": {
"build": "gulp build",
"test": "gulp test",
"watch": "gulp watch"
},
"keywords": [
"functional",
"iterable",
"iterator",
"lazy",
"sequence"
],
"repository": {
"type": "git",
"url": "https://github.com/dvlsg/iterablejs.git"
},
"author": "Dave Lesage",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^4.1.8",
"babel-preset-es2015-node": "^5.0.2",
"babel-register": "^6.4.3",
"del": "^1.2.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^0.14.0",
"gulp-mocha": "^2.1.1",
"gulp-plumber": "^1.0.1",
"run-sequence": "^1.1.1",
"zana-assert": "^0.1.4"
},
"dependencies": {
"zana-check": "^0.1.1",
"zana-util": "^0.1.8"
}
}