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
| {
| "name": "permutation",
| "version": "1.0.0",
| "description": "Perumation durch Fakultät berechnen",
| "scripts": {
| "build": "npx parcel build src/*.html --public-url ./",
| "serve": "npx parcel serve src/index.html",
| "clean": "rm -rf .parcel-cache; rm -rf dist",
| "clean-all": "npm run clean; rm -rf node_modules package-lock.json",
| "test": "echo TODO"
| },
| "keywords": [
| "permutation",
| "math",
| "programmierung-1"
| ],
| "author": "Hong-Phuc Bui",
| "license": "MIT",
| "devDependencies": {
| "@parcel/transformer-sass": "^2.0.1",
| "parcel": "^2.0.1"
| },
| "dependencies": {
| "bootstrap": "^5.1.3"
| }
| }
|
|