-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
70 lines (70 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "stream.js",
"version": "1.1.2",
"description": "Lazy streams.",
"repository": {
"git": "https://github.com/dionyziz/stream.js"
},
"home": "https://dionyziz.github.io/stream.js-website/",
"license": "MIT",
"maintainers": [
{
"name": "Dionysis Zindros",
"email": "dionyziz@gmail.com",
"web": "http://dionyziz.com/"
}
],
"contributors": [
{
"name": "Ryan Scheel",
"email": "ryan.havvy@gmail.com",
"web": "http://widget.mibbit.com/?channel=%23havvy&server=irc.mibbit.net"
},
{
"name": "Dionysis Zindros",
"email": "dionyziz@gmail.com",
"web": "http://dionyziz.com/"
},
{
"name": "Jon Ege Ronnenberg",
"email": "jon.ronnenberg+stream.js@gmail.com",
"web": "https://keybase.io/dotnetcarpenter"
},
{
"name": "George Gkasdrogkas",
"email": "georgegkas@gmail.com",
"web": "https://codepen.io/georgegkas"
}
],
"main": "src/stream.js",
"scripts": {
"test": "istanbul cover jasmine && node external/sendtocodecov.js",
"build:browser": "browserify src/stream.js --standalone Stream --outfile stream.js",
"minify": "browserify src/stream.js --standalone Stream --outfile stream.min.js --debug --plugin [ minifyify --map stream.min.js.map --output stream.min.js.map ]",
"zip": "bestzip --",
"eslint": "eslint src/ spec/"
},
"directories": {
"lib": "src"
},
"engines": {
"node": ">=6"
},
"keywords": [
"stream",
"lazy",
"infinite",
"data structure"
],
"devDependencies": {
"bestzip": "^1.1.2",
"browserify": "^13.1.1",
"codecov.io": "^0.1.6",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.0",
"jasmine": "^2.4.1",
"minifyify": "^7.1.0"
}
}