-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.74 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
69
{
"name": "edusharing-opencast-importer",
"version": "0.2.3",
"description": "This importer harvests episodes and series (lecture recordings) from Opencast instances and pushes them as external references to an Edu-Sharing instance.",
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"dev": "nodemon -x 'clear;node' src/main.js",
"lint": "eslint '**/*js'",
"lint:fix": "eslint '**/*js' --fix",
"format": "prettier-eslint $PWD/'**/*js' --write",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"npm run format"
]
},
"repository": {
"type": "git",
"url": "https://github.com/virtUOS/edusharing-opencast-importer.git"
},
"keywords": [
"Opencast",
"Edu-Sharing",
"Open Educational Resources",
"OER"
],
"author": "virtUOS",
"license": "GPL-3.0",
"devDependencies": {
"axios-debug-log": "^0.8.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.8",
"jest": "^27.5.1",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.20",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"is-reachable": "^5.1.0",
"node-file-logger": "^0.9.5",
"p-limit": "^3.1.0",
"parse-full-name": "^1.2.6",
"vcards-js": "^2.10.0"
},
"nodemonConfig": {
"ignore": [
"data/*.json",
"data/*/*.json"
]
}
}