-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "adventcalendar",
"version": "0.0.7",
"description": "virtueller Adventskalender",
"main": "dist/calendar.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"shrink": "npx uglify-js -o dist/cal.min.js --compress --mangle --mangle-props -- src/calendar.js",
"build": "mkdir -p dist && cp src/calendar.js dist && npm run shrink && cp build/index.html dist/example.html",
"serve": "cp src/calendar.js build && npx serve build -p 8000",
"test": "jest",
"coverage": "jest --collectCoverage"
},
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frie321984/adventskalender.git"
},
"keywords": [
"advent",
"calendar",
"xmas",
"christmas"
],
"author": "Friederike Schertel",
"license": "CC BY-NC 4.0",
"bugs": {
"url": "https://github.com/frie321984/adventskalender/issues"
},
"homepage": "https://github.com/frie321984/adventskalender#readme",
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"serve": "^14.2.3",
"uglify-js": "^3.19.3"
}
}