forked from Laboratoria/curriculum-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 989 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
39
{
"name": "@laboratoria/curriculum-parser",
"version": "5.1.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": ">=16"
},
"scripts": {
"pretest": "eslint .",
"test": "vitest run --coverage --reporter verbose",
"watch": "vitest --reporter verbose"
},
"dependencies": {
"commander": "^11.0.0",
"js-yaml": "^4.1.0",
"rehype-document": "^7.0.1",
"rehype-stringify": "^10.0.0",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"sharp": "^0.32.5",
"unified": "^11.0.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^0.34.4",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"nock": "^13.3.3",
"vitest": "^0.34.4"
}
}