-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "knapsack-problem",
"version": "1.0.0",
"description": "Solving the knapsack problem with dynamic programming and greedy algorithm.",
"main": "index.js",
"homepage": "http://PaulKappmeyer.github.io/knapsack-problem",
"repository": {
"type": "git",
"url": "https://github.com/PaulKappmeyer/knapsack-problem.git"
},
"scripts": {
"start": "webpack server",
"build": "webpack",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"keywords": [
"knapsack-problem",
"dynamic-programming",
"greedy-algorithm"
],
"author": {
"name": "Paul Kappmeyer",
"url": "https://github.com/PaulKappmeyer"
},
"devDependencies": {
"@types/node": "^22.13.17",
"css-loader": "^7.1.2",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
}
}