forked from HYF-Class19/home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.25 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
{
"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 -v \"./**\"",
"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.11.2",
"cspell": "^5.21.2",
"js-yaml": "^4.1.0",
"markdownlint-cli": "^0.31.1",
"node-fetch": "^3.2.6",
"prettier": "^2.7.1"
},
"dependencies": {
"i": "^0.3.7"
}
}