-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (66 loc) · 3.32 KB
/
package.json
File metadata and controls
70 lines (66 loc) · 3.32 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
61
62
63
64
65
66
67
68
69
70
{
"name" : "moodle-node",
"version" : "1.0.12",
"description": "Manage Moodle from NodeJS",
"main" : "src/index.js",
"scripts" : {
"bod" : "git add -A; git commit -am 'bod'; git push && git push crms main",
"eod" : "git add -A; git commit -am 'eod'; git push && git push crms main",
"push": "git push && git push crms main",
"test:getSiteInfo" : "dotenv -e .env.local -- node tests/get-site-info.js",
"test:getCourse" : "dotenv -e .env.local -- node tests/get-course.js",
"test:getCourses" : "dotenv -e .env.local -- node tests/get-courses.js",
"test:getCourseCategories": "dotenv -e .env.local -- node tests/get-course-categories.js",
"test:getUsersAll" : "dotenv -e .env.local -- node tests/get-users-all.js",
"test:getUser" : "dotenv -e .env.local -- node tests/get-user.js",
"test:getUsers" : "dotenv -e .env.local -- node tests/get-users.js",
"test:getUserCourses" : "dotenv -e .env.local -- node tests/get-user-courses.js",
"test:createUser" : "dotenv -e .env.local -- node tests/create-user.js",
"test:deleteUser" : "dotenv -e .env.local -- node tests/delete-user.js",
"test:getUserPreferences" : "dotenv -e .env.local -- node tests/get-user-preferences.js",
"test:getCohorts" : "dotenv -e .env.local -- node tests/get-cohorts.js",
"test:getCohort" : "dotenv -e .env.local -- node tests/get-cohort.js",
"test:createCohort" : "dotenv -e .env.local -- node tests/create-cohort.js",
"test:updateCohort" : "dotenv -e .env.local -- node tests/update-cohort.js",
"test:deleteCohort" : "dotenv -e .env.local -- node tests/delete-cohort.js",
"test:getCohortMembers" : "dotenv -e .env.local -- node tests/get-cohort-members.js",
"test:addCohortMember" : "dotenv -e .env.local -- node tests/add-cohort-member.js",
"test:deleteCohortMember" : "dotenv -e .env.local -- node tests/delete-cohort-member.js",
"test:getEnrolledUsers" : "dotenv -e .env.local -- node tests/get-enrolled-users.js",
"test:addEnrolledUser" : "dotenv -e .env.local -- node tests/add-enrolled-user.js",
"test:deleteEnrollment" : "dotenv -e .env.local -- node tests/delete-enrollment.js",
"test:getCourseNotes" : "dotenv -e .env.local -- node tests/get-course-notes.js",
"test:addCourseNote" : "dotenv -e .env.local -- node tests/add-course-note.js",
"test:deleteCourseNote" : "dotenv -e .env.local -- node tests/delete-course-note.js",
"test:updateCourseNote" : "dotenv -e .env.local -- node tests/update-course-note.js",
"test:updateUser" : "dotenv -e .env.local -- node tests/update-user.js"
},
"repository": {
"type": "git",
"url" : "git+https://github.com/FredLackey/moodle-node.git"
},
"bugs" : {
"url": "https://github.com/FredLackey/moodle-node/issues"
},
"homepage": "https://github.com/FredLackey/moodle-node#readme",
"keywords": [
"moodle",
"node",
"api",
"javascript",
"js"
],
"author": {
"name" : "Fred Lackey",
"email": "fred.lackey@gmail.com",
"url" : "http://fredlackey.com"
},
"license" : "Apache-2.0",
"dependencies": {
"cleaner-node": "^1.3.2",
"xlsx-contacts-parser": "^1.0.1"
},
"devDependencies": {
"dotenv-cli": "^8.0.0"
}
}