-
-
Notifications
You must be signed in to change notification settings - Fork 261
/
Copy pathpackage.json
66 lines (66 loc) · 1.31 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "rot-js",
"version": "2.2.1",
"description": "A roguelike toolkit in JavaScript",
"keywords": [
"ascii",
"dungeon",
"fov",
"game",
"libtcod",
"lighting",
"los",
"rng",
"rogue",
"roguelike",
"tiles"
],
"files": [
"lib",
"dist",
"doc",
"examples",
"addons",
"manual"
],
"homepage": "https://ondras.github.io/rot.js",
"bugs": "https://github.com/ondras/rot.js/issues",
"license": "BSD-3-Clause",
"author": "Ondřej Žára <[email protected]> (https://ondras.zarovi.cz/)",
"main": "dist/rot.js",
"module": "lib/index.js",
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/ondras/rot.js.git"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.5",
"@babel/preset-env": "7.16.5",
"@types/node": "17.0.2",
"google-closure-compiler": "20211201.0.0",
"jasmine": "3.10.0",
"puppeteer-core": "13.0.0",
"rollup": "2.61.1",
"typedoc": "0.22.10",
"typescript": "4.5.4"
},
"babel": {
"sourceType": "unambiguous",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"ie": 10
},
"loose": true
}
]
]
},
"types": "./lib/index.d.ts"
}