forked from sbj42/maze-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 842 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
{
"name": "@sbj42/maze-generator",
"version": "2.0.6",
"description": "An infrastructure for generating mazes",
"main": "src",
"scripts": {
"lint": "eslint .",
"test": "mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbj42/maze-generator.git"
},
"keywords": [
"maze-generator",
"maze",
"dungeon",
"labyrinth",
"procedural"
],
"author": "James Clark <[email protected]> (http://arbitraryclark.blogspot.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sbj42/maze-generator/issues"
},
"homepage": "https://github.com/sbj42/maze-generator#readme",
"dependencies": {
"@sbj42/maze-generator-core": "^0.1.4"
},
"devDependencies": {
"eslint": "^3.7.1",
"mocha": "^3.1.0",
"random-js": "^1.0.8"
}
}