-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 778 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 778 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
{
"name": "cormen",
"version": "1.0.0",
"description": "",
"main": "src/algorithms/Sorter.js",
"dependencies": {},
"devDependencies": {
"copy-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
},
"scripts": {
"build": "webpack -p",
"watch": "webpack --watch",
"start:dev": "webpack-dev-server",
"server:dev": "webpack -p && webpack-dev-server --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FrankNewII/cormen.git"
},
"author": "FrankNewII",
"license": "ISC",
"bugs": {
"url": "https://github.com/FrankNewII/cormen/issues"
},
"homepage": "https://github.com/FrankNewII/cormen#readme"
}