-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "pathfinding",
"version": "0.0.1",
"description": "Different PathFinding Algorithms on a grid.",
"main": "index.js",
"scripts": {
"test": "",
"start": "webpack-dev-server",
"build": "webpack",
"lintTest": "eslint ./",
"lint": "eslint ./ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wolverin-e/PathFinding.git"
},
"author": "Mitul, Bhushan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Wolverin-e/PathFinding/issues"
},
"homepage": "https://Wolverin-e.github.io/PathFinding/page",
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/register": "^7.10.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.3.1",
"eslint-config-recommended": "^4.1.0",
"eslint-loader": "^4.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"denque": "^1.4.1",
"heap": "^0.2.6",
"javascript-state-machine": "^3.1.0",
"jquery": "^3.5.1",
"sweetalert": "^2.1.2"
}
}