-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
38 lines (38 loc) · 951 Bytes
/
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
{
"name": "@laboratoria/curriculum-parser",
"version": "6.1.0-alpha.0",
"description": "Command line tool used to parse projects, topics, exercises, etc, written in markdown @Laboratoria",
"license": "MIT",
"type": "module",
"exports": {
".": "./index.js",
"./lib/project.js": "./lib/project.js"
},
"bin": {
"curriculum-parser": "index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"pretest": "eslint .",
"test": "vitest run --coverage --reporter verbose",
"watch": "vitest --reporter verbose"
},
"dependencies": {
"commander": "^12.1.0",
"js-yaml": "^4.1.0",
"rehype-document": "^7.0.3",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"sharp": "^0.33.5",
"unified": "^11.0.5"
},
"devDependencies": {
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.11.1",
"nock": "^13.5.5",
"vitest": "^1.6.0"
}
}