-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 850 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
30
31
32
33
34
35
36
37
{
"name": "@thewizardbear/maze_generator",
"version": "0.4.0",
"description": "A deno-compatible package for maze generation",
"main": "mod.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"No test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheWizardBear/maze_generator.git"
},
"keywords": [
"maze",
"maze-generation",
"maze-generator",
"maze-algorithms",
"deno",
"deno-module",
"mazes",
"maze-maker",
"maze-generation-algorithms",
"generator"
],
"author": "The Wizard Bear",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheWizardBear/maze_generator/issues"
},
"homepage": "https://github.com/TheWizardBear/maze_generator#readme",
"dependencies": {
"node-fetch": ">=2.6.1"
}
}