forked from bvibber/stream-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.07 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": "stream-file",
"version": "0.3.0",
"description": "Buffered streaming HTTP fetch abstraction",
"main": "lib/stream-file.js",
"files": [
"lib/",
"dist/",
"readme.md",
"COPYING"
],
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"assert": "^1.4.1",
"babel-preset-es2015": "^6.16.0",
"browserify-derequire": "^0.9.4",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-compress": "^1.3.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"mocha": "^3.0.2"
},
"scripts": {
"test": "mocha",
"prepublish": "grunt",
"build": "grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/brion/stream-file.git"
},
"keywords": [
"http",
"streaming",
"input"
],
"author": "Brion Vibber <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brion/stream-file/issues"
},
"homepage": "https://github.com/brion/stream-file#readme"
}