forked from sillevl/course-webscripting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
38
39
{
"name": "course-webscripting",
"version": "1.0.0",
"description": "Course materials for Webscripting",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vuepress dev src",
"build": "vuepress build src",
"lint-markdown": "markdownlint **/*.md",
"lint": "npm run lint-markdown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sillevl/course-webscripting.git"
},
"author": "Sille Van Landschoot <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sillevl/course-webscripting/issues"
},
"homepage": "https://github.com/sillevl/course-webscripting#readme",
"devDependencies": {
"vuepress": "^1.5.4"
},
"dependencies": {
"husky": "^4.3.0",
"markdownlint-cli": "^0.23.2",
"vuepress-plugin-container": "^2.1.2",
"vuepress-plugin-presentation-mode": "^0.1.1",
"vuepress-plugin-public-files": "^1.0.0-alpha.0",
"vuepress-plugin-zooming": "^1.1.7"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-markdown"
}
}
}