-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 914 Bytes
/
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
{
"name": "jstetrisgamejs",
"version": "1.0.0",
"description": "Do you love Tetris? I do!",
"private": true,
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack && cp index.html dist/index.html && cp style.css dist/style.css",
"start": "webpack-dev-server",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaRaFF/jsTetrisGameJs.git"
},
"author": "Ralph Meier",
"license": "ISC",
"bugs": {
"url": "https://github.com/DaRaFF/jsTetrisGameJs/issues"
},
"homepage": "https://github.com/DaRaFF/jsTetrisGameJs#readme",
"dependencies": {
"gamejs": "2.0.2"
},
"devDependencies": {
"file-loader": "^6.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}