-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 825 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 825 Bytes
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": "rote",
"version": "0.5.0",
"description": "Tools for making Rogue-like games",
"private": true,
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --watch",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocket-boots/rote.git"
},
"keywords": [
"roguelike",
"rogue",
"game",
"games",
"toolkit"
],
"author": "Luke Nickerson",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/rocket-boots/rote/issues"
},
"homepage": "https://github.com/rocket-boots/rote#readme",
"dependencies": {
"fontfaceobserver": "^2.1.0",
"rot-js": "^2.1.1"
},
"devDependencies": {
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}