-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "sched2openfeedback",
"version": "1.0.0",
"description": "Import data from Sched and export a JSON file in OpenFeedbacks format",
"type": "module",
"private": true,
"exports": "./index.js",
"scripts": {
"start": "node index.js",
"start:sched": "node index.js --sched",
"build": "tsc",
"build:watch": "tsc -w --sourceMap",
"clean": "rm index.js* *.tgz"
},
"repository": {
"type": "git",
"url": "https://github.com/snowcamp/sched2openfeedback.git"
},
"homepage": "https://github.com/snowcamp/sched2openfeedback",
"bugs": {
"url": "https://github.com/snowcamp/sched2openfeedback/issues"
},
"keywords": [
"script",
"sched",
"openfeedback",
"export"
],
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"license": "MIT",
"engine": {
"node": ">18"
},
"devDependencies": {
"@types/node": "^18.11.18",
"typescript": "^5.3.3"
},
"files": [
"index.js"
],
"dependencies": {
"dotenv": "^16.0.3"
}
}