forked from winterbe/streamjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "streamjs",
"version": "1.6.4",
"description": "Lazy Object Streaming Pipeline for JavaScript - inspired by the Java 8 Streams API",
"homepage": "https://github.com/winterbe/streamjs",
"author": {
"name": "Benjamin Winterberg",
"url": "http://winterbe.com"
},
"keywords": [
"functional",
"collection",
"pipeline",
"stream",
"lazy",
"utils",
"java",
"array"
],
"repository": {
"type": "git",
"url": "git://github.com/winterbe/streamjs.git"
},
"bugs": {
"url": "https://github.com/winterbe/streamjs/issues"
},
"devDependencies": {
"babel-core": "6.2.1",
"babel-polyfill": "6.2.0",
"blanket": "1.1.7",
"eslint": "1.10.2",
"grunt": "0.4.5",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-qunit": "0.7.0",
"grunt-contrib-uglify": "0.11.0",
"grunt-eslint": "17.1.0",
"load-grunt-tasks": "3.2.0"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
},
"main": "stream.js",
"files": [
"stream.js",
"stream-min.js",
"LICENSE"
]
}