forked from virtUOS/edusharing-opencast-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "edusharing-opencast-importer",
"version": "0.1.0",
"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/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon -x 'clear;node' src/index.js",
"lint": "eslint '**/*js'",
"lint:fix": "eslint '**/*js' --fix",
"format": "prettier-eslint $PWD/'**/*js' --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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": "Florian Feyen",
"license": "GPLv3",
"devDependencies": {
"axios-debug-log": "^0.8.2",
"eslint": "^7.18.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"node-file-logger": "^0.9.5",
"p-limit": "^3.1.0"
},
"nodemonConfig": {
"ignore": [
"data/*.json",
"data/*/*.json"
]
}
}