forked from CommandLineHeroes/hero-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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": "hero-engine",
"version": "0.1.0",
"description": "Open-source HTML5 adventure game engine",
"main": "index.js",
"scripts": {
"test": "npm run eslint",
"eslint": "./node_modules/.bin/eslint src",
"eslint-fix": "./node_modules/.bin/eslint --fix src",
"precommit": "npm run eslint-fix",
"examples": "node ./node_modules/http-server/bin/http-server examples/ -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommandLineHeroes/hero-engine.git"
},
"keywords": [
"adventure",
"game",
"engine"
],
"author": "Command Line Heroes",
"license": "MIT",
"bugs": {
"url": "https://github.com/CommandLineHeroes/hero-engine/issues"
},
"homepage": "https://github.com/CommandLineHeroes/hero-engine",
"dependencies": {
"phaser": "^3.12.0"
},
"devDependencies": {
"browser-sync": "^2.24.7",
"eslint": "^5.5.0",
"eslint-config-google": "^0.9.1",
"git-pre-commit": "^2.1.4",
"http-server": "^0.11.1"
}
}