Hong-Phuc Bui
2025-01-16 2889de7f0c2d587a17fbd322af57c29e84238620
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
{
  "name": "stundenplan",
  "version": "0.0.1",
  "type": "module",
  "description": "Program zur Erstellung von Stundenplan",
  "repository": "https://<repos>.htwsaar.de/gitblit",
  "scripts": {
    "build": "npx parcel build src/*.html --public-url ./",
    "serve": "npx parcel serve src/*.html",
    "clean": "rm -rf .cache; rm -rf dist; rm -rf coverage .nyc_output",
    "clean-all": "npm run clean; rm -rf node_modules package-lock.json",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "test-browser": "npx parcel serve test-browser/index.html --open",
    "doc": "npx esdoc"
  },
  "author": "Hong-Phuc Bui",
  "license": "MIT",
  "devDependencies": {
    "esdoc": "1.1.0",
    "esdoc-standard-plugin": "1.0.0",
    "jest": "29.7.0",
    "parcel": "2.13.3"
  },
  "dependencies": {
    "qunit": "2.12.0"
  }
}