forked from lab-brussels-1/home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.2 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
{
"name": "school-as-code",
"version": "1.0.0",
"description": "this is the template to create a learning space automatically",
"type": "module",
"scripts": {
"format": "prettier --write ./",
"format:check": "prettier --check ./",
"spell-check": "cspell \"./**\"",
"lint:ls": "ls-lint",
"lint:md": "markdownlint --ignore node_modules --config ./.markdownlint.jsonc --fix ./ ",
"update:people": "node ./admin/scripts/bin/update-collaborators.js && node ./admin/scripts/bin/render-readme.js",
"update:modules": "node ./admin/scripts/bin/update-modules.js && node ./admin/scripts/bin/render-readme.js",
"update:readme": "node ./admin/scripts/bin/render-readme.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/school-as-code/school-as-code.git"
},
"bugs": {
"url": "https://github.com/school-as-code/school-as-code/issues"
},
"homepage": "https://github.com/school-as-code/school-as-code#readme",
"author": "school-as-code",
"license": "MIT",
"devDependencies": {
"@ls-lint/ls-lint": "^1.10.0",
"cspell": "^5.9.0",
"js-yaml": "^4.1.0",
"markdownlint-cli": "^0.28.1",
"node-fetch": "^3.2.0",
"prettier": "^2.3.2"
}
}