-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.18 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "maze-generation",
"version": "3.1.2",
"description": "A package to generate mazes using the depth first or hunt and kill algorithm. Mazes can be generated with seed values for reproducibility",
"homepage": "https://github.com/JRIngram/maze-gen",
"bugs": "https://github.com/JRIngram/maze-gen/issues",
"repository": {
"type": "git",
"url": "https://github.com/JRIngram/maze-gen.git"
},
"keywords": [
"maze",
"generator",
"maze-gen",
"maze-gen",
"gen",
"depth-first",
"hunt-and-kill",
"huntandkill",
"procedural",
"recursive",
"backtracker",
"depth",
"first",
"depth-first",
"seed",
"reproducible"
],
"main": "index.js",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"linter": "semistandard",
"linter:fix": "semistandard --fix",
"prepare": "husky install"
},
"author": {
"name": "Jamie Ingram",
"url": "https://github.com/JRIngram"
},
"license": "MIT",
"devDependencies": {
"husky": "8.0.3",
"jest": "29.7.0",
"semistandard": "17.0.0"
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"prando": "^6.0.1"
}
}