-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 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
{
"name": "labyrinthos",
"version": "1.1.2",
"description": "A JavaScript library for procedural generation of maps, mazes, and biomes, supporting various algorithms and terrain types.",
"main": "./lib/labyrinthos.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/yantra-core/Labyrinthos.js.git"
},
"scripts": {
"test": "tap --coverage-report=lcov --allow-incomplete-coverage test/",
"cover": "tap --coverage-report=html test/"
},
"keywords": [
"procedural-generation",
"map-generation",
"maze-generation",
"javascript",
"game-development"
],
"author": "Yantra Works",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/yantra-core/Labyrinthos.js/issues"
},
"homepage": "https://github.com/yantra-core/Labyrinthos.js#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"tap": "^18.6.1",
"tape": "^5.7.4",
"typedoc": "^0.25.7",
"typedoc-material-theme": "^1.0.2",
"uglify-js": "^3.17.4"
}
}