-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
40
41
42
43
{
"name": "girlsday-einfuehrung-informatik",
"version": "1.1.2024",
"description": "Girls' Day - Eine Einführung in die Informatik",
"license": "MIT",
"author": {
"name": "Stephan Strittmatter (stritti)",
"url": "https://github.com/stritti"
},
"readme": "README.md",
"repository": {
"url": "https://github.com/stritti/girlsday-einfuehrung-informatik"
},
"homepage": "https://stritti.github.io/girlsday-einfuehrung-informatik",
"dependencies": {
"impress.js": "^1.1.0",
"jquery": "^3.7.1",
"lazyload": "^2.0.0-rc.2"
},
"devDependencies": {
"browser-sync": "^3.0.2",
"grunt": "^1.6.1",
"grunt-browser-sync": "^2.2.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^5.0.0",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"standard": "^17.1.0"
},
"scripts": {
"start": "grunt",
"build": "grunt build",
"test": "standard"
},
"standard": {
"ignore": [
"**/output/",
"**/impress.js"
]
}
}