-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 924 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 924 Bytes
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
{
"name": "mathtablegenerator",
"version": "1.0.0",
"description": "Create Multiplication Table Generator In Three Ways In JavaScript (\"for\" Loop, \"While\" Loop, \"Do-While\" Loop)🍦😋",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"builddev": "webpack --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanillma/Multiplication-Table-Generator.git"
},
"keywords": [
"Multiplication",
"Table",
"Generator",
"While",
"Do While",
"For",
"Loop"
],
"author": "Vanillma",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanillma/Multiplication-Table-Generator/issues"
},
"homepage": "https://github.com/Vanillma/Multiplication-Table-Generator/#readme",
"devDependencies": {
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}