-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.77 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": "escape-from-the-maze",
"description": "A simple & tiny CUI maze game",
"version": "1.1.0",
"author": "kjirou",
"bin": {
"escape-from-the-maze": "./bin/escape-from-the-maze"
},
"bugs": {
"url": "https://github.com/kjirou/escape-from-the-maze/issues"
},
"dependencies": {
"babel": "5.8.21",
"blessed": "0.1.21",
"chalk": "1.1.1",
"dev-null": "0.1.1",
"flux": "2.0.3",
"generate-maze-by-clustering": "0.0.4",
"keymirror": "0.1.1",
"keypress": "0.2.1",
"lodash": "3.10.1",
"minimist": "1.2.0",
"react": "0.14.0-beta3",
"react-blessed": "0.1.0",
"request": "2.61.0",
"rx": "3.0.0",
"underscore.string": "3.1.1",
"uuid": "2.0.1"
},
"devDependencies": {
"eslint": "1.1.0",
"espower-babel": "3.2.0",
"fixpack": "2.2.0",
"gulp": "3.9.0",
"gulp-babel": "5.2.1",
"mocha": "2.2.5",
"power-assert": "0.11.0",
"sinon": "1.16.0",
"validator": "4.0.3"
},
"engines": {
"node": ">=0.12",
"npm": ">=2"
},
"homepage": "https://github.com/kjirou/escape-from-the-maze#readme",
"keywords": [
"cui",
"game",
"maze"
],
"license": "MIT",
"main": "app.es6",
"repository": {
"type": "git",
"url": "git+https://github.com/kjirou/escape-from-the-maze.git"
},
"scripts": {
"build": "gulp build",
"help": "node bin/escape-from-the-maze -d -h",
"lint": "eslint --ext .es6 *.es6 actions components conf consts dispatcher env input lib models stores test",
"ranking": "node bin/escape-from-the-maze -d -r",
"start": "node bin/escape-from-the-maze -d",
"test": "mocha",
"zip-server": "cd server/aws-lambda && npm i && zip -r ../../tmp/aws-lambda-`date '+%Y%m%d-%H%M%S'`.zip index.js aws-config.json node_modules && cd ../.."
}
}