-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.39 KB
/
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
{
"name": "oreilly-learnosity-tools",
"version": "1.0.0",
"description": "Tools for obtaining info from Learnosity via API",
"main": "index.js",
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"inquirer": "^8.2.6",
"learnosity-sdk-nodejs": "github:Learnosity/learnosity-sdk-nodejs",
"node-pandoc": "^0.3.0",
"node-pandoc-promise": "^0.0.6",
"uuid": "^8.3.2",
"xpath": "^0.0.33"
},
"scripts": {
"get-activity-items": "npm install && node ./src/get-activity-items.js",
"get-questions": "npm install && node ./src/examples/get-questions.js",
"get-activities": "npm install && node ./src/examples/get-activities.js",
"set-questions": "npm install && node ./src/examples/set-questions.js",
"set-items": "npm install && node ./src/examples/set-items.js",
"set-activities": "npm install && node ./src/examples/set-activities.js",
"set-activity-from-questions": "npm install && node ./src/set-activity-from-questions.js",
"get-tags": "npm install && node ./src/examples/get-tags.js",
"convert-docx": "npm install && node ./src/convert-docx.js",
"create-quizzes-from-docx": "npm install && node ./src/create-quizzes-from-docx.js",
"append-item-tags": "npm install && node ./src/append-item-tags.js",
"archive-activities-and-items": "npm install && node ./src/archive-activities-and-items.js"
},
"author": "Greg Hyman",
"license": "ISC"
}