-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 771 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 771 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
{
"name": "moodle-client",
"version": "0.5.2",
"description": "Node.js client for Moodle web services API",
"main": "client.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mudrd8mz/node-moodle-client.git"
},
"keywords": [
"moodle",
"api",
"webservice",
"rest",
"json"
],
"author": "David Mudrák <david@moodle.com>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mudrd8mz/node-moodle-client/issues"
},
"homepage": "https://github.com/mudrd8mz/node-moodle-client#readme",
"dependencies": {
"bluebird": "^3.5.2",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"mocha": "^5.2.0"
}
}