forked from mwinkle/node-webhdfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 981 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
{
"name": "node-webhdfs",
"main": "src/webhdfs.js",
"description": "A WebHDFS module for Node.js.",
"version": "0.0.2",
"keywords": ["hdfs", "webhdfs", "http"],
"maintainers": ["Ryan Cole <[email protected]> (http://rycole.com)"],
"contributors": ["Ryan Cole <[email protected]> (http://rycole.com)"],
"bugs": {
"url": "mailto:[email protected]"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"dependencies": {
"underscore": "1.3.3",
"request": "2.9.201"
},
"engines": {
"node": "*"
},
"author": "Ryan Cole <[email protected]> (http://rycole.com)",
"homepage": "https://github.com/ryancole/node-webhdfs",
"repository": {
"type": "git",
"url": "[email protected]:ryancole/node-webhdfs.git"
},
"scripts": {
"test": "mocha --reporter spec --timeout 10000 test/webhdfs.js"
}
}