-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 KB
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
{
"name": "@feup-infolab/node-b2drop",
"version": "1.1.0",
"description": "A B2Drop client for NodeJS",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"fix": "eslint --fix ./src/** --config ./src/.eslintrc.json ; eslint --fix ./test/** --config ./src/.eslintrc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feup-infolab/node-b2drop.git"
},
"keywords": [
"b2drop",
"cloud",
"storage",
"client",
"nodejs"
],
"author": "FEUP Infolab",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/feup-infolab/node-b2drop/issues"
},
"homepage": "https://github.com/feup-infolab/node-b2drop#readme",
"dependencies": {
"async": "^2.6.0",
"cheerio": "^1.0.0-rc.2",
"codacy-coverage": "^2.0.3",
"md5-file": "^3.2.3",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"querystring": "^0.2.0",
"request": "^2.83.0",
"rimraf": "^2.6.2",
"underscore": "^1.8.3",
"webdav": "^1.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^4.0.1",
"uuid": "^3.1.0",
"coveralls": "^2.11.16",
"istanbul": "^0.4.5",
"mocha-lcov-reporter": "^1.2.0",
"stream-to-array": "^2.3.0",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-strict-standard": "^3.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
}
}