-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "js-tetris-cli",
"version": "0.0.3",
"description": "open source pure javascript tetris (without external libraries and dependencies) ascii/ansi cli version",
"main": "index.js",
"bin": {
"js-tetris-cli": "bin/js-tetris-cli"
},
"scripts": {
"build": "babel src -d dist --source-maps",
"start": "bin/js-tetris-cli",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalininskiy/js-tetris-cli.git"
},
"keywords": [
"js",
"javascript",
"ascii",
"ansi",
"tetris",
"cli",
"console",
"terminal",
"text"
],
"author": "Ivan VDM Kalininskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/kalininskiy/js-tetris-cli/issues"
},
"homepage": "https://github.com/kalininskiy/js-tetris-cli#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1"
}
}