forked from ryancole/node-webhdfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 804 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 804 Bytes
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
{
"name": "node-webhdfs",
"version": "0.2.1",
"description": "A WebHDFS module for Node.js.",
"author": "Ryan Cole <ryan@rycole.com> (http://rycole.com)",
"homepage": "https://github.com/ryancole/node-webhdfs",
"main": "src/webhdfs.js",
"keywords": [
"hdfs",
"webhdfs",
"http"
],
"bugs": {
"url": "mailto:ryan@rycole.com"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"dependencies": {
"request": "^2.45.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"mocha": "^1.21.4",
"should": "^4.0.4"
},
"repository": {
"type": "git",
"url": "git@github.com:ryancole/node-webhdfs.git"
},
"scripts": {
"test": "mocha --reporter spec --timeout 10000 test/webhdfs.js"
}
}