-
Notifications
You must be signed in to change notification settings - Fork 16.8k
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 986 Bytes
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
{
"name": "curriculum",
"version": "1.0.0",
"description": "[The Odin Project](https://www.theodinproject.com/) (TOP) is an open-source curriculum for learning full-stack web development. Our curriculum is divided into distinct courses, each covering the subject language in depth. Each course contains a listing of lessons interspersed with multiple projects. These projects give users the opportunity to practice what they are learning, thereby reinforcing and solidifying the theoretical knowledge learned in the lessons. Completed projects may then be included in the user's portfolio.",
"scripts": {
"lint": "markdownlint-cli2",
"fix": "markdownlint-cli2 --fix",
"test": "node --test"
},
"license": "CC BY-NC-SA 4.0",
"devDependencies": {
"markdownlint-cli2": "^0.23.2"
},
"devEngines": {
"os": [
{
"name": "linux",
"onFail": "warn"
},
{
"name": "darwin",
"onFail": "warn"
}
]
}
}