-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.09 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
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
{
"name": "course-digest",
"version": "1.0.0",
"description": "Utility for migrating legacy OLI content by generating an OLI Torus digest from an XML course package",
"main": "index.js",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"validate": "ts-node -r tsconfig-paths/register src/validate.ts",
"test": "jest -c jest.config.js",
"test:watch": "jest --watch -c jest.config.js",
"lint": "npx eslint src test",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src test --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"author": "The Open Learning Initiative",
"license": "MIT",
"dependencies": {
"ajv": "^8.11.0",
"archiver": "^5.3.0",
"aws-sdk": "^2.858.0",
"cheerio": "1.0.0-rc.10",
"citation-js": "0.7.15",
"command-line-args": "^5.1.1",
"csv-writer": "^1.6.0",
"dotenv": "^8.2.0",
"filesize": "^10.0.7",
"glob": "^7.1.6",
"html-entities": "^2.3.3",
"jest": "^26.6.3",
"jsonschema": "^1.4.1",
"md5-file": "^5.0.0",
"mime-types": "^2.1.29",
"node-xml-stream-parser": "^1.0.12",
"saxon-js": "^2.3.0",
"sync-fetch": "^0.4.2",
"tmp": "^0.2.1",
"tsmonad": "^0.8.0",
"xlsx": "^0.18.5",
"xml-formatter": "^2.6.1",
"xml2js": "^0.4.23",
"xmldom": "^0.3.0"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/aws-sdk": "^2.7.0",
"@types/cheerio": "^0.22.31",
"@types/command-line-args": "^5.2.0",
"@types/glob": "^7.2.0",
"@types/jest": "^26.0.13",
"@types/mime-types": "^2.1.1",
"@types/node": "^17.0.22",
"@types/sync-fetch": "^0.4.0",
"@types/tmp": "^0.2.3",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.6.0",
"ts-jest": "^26.3.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.2"
}
}