-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 887 Bytes
/
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
{
"name": "VonNeumannEmulator",
"version": "1.0.0",
"description": "An Emulator for Von Neumann CPU (minimized) for teaching purposes",
"source": "src/index.html",
"scripts": {
"start": "parcel ./src/index.html",
"prebuild-dev": "shx rm -rf dist/*",
"build-dev": "parcel build ./src/index.html --no-optimize --public-url ./",
"prebuild": "shx rm -rf dist/*",
"build": "parcel build ./src/index.html --public-url ./",
"push-gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup --verbose",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.8.3",
"@types/bootstrap": "^5.2.6",
"parcel": "^2.8.3",
"shx": "^0.3.2"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@popperjs/core": "^2.11.7",
"bootstrap": "^5.3.0-alpha3",
"gh-pages": "^5.0.0"
}
}