35 lines
787 B
JSON
35 lines
787 B
JSON
|
{
|
||
|
"name": "game-of-life-web",
|
||
|
"version": "0.1.0",
|
||
|
"description": "basic wasm-based game-of-life",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"build": "webpack --config webpack.config.js",
|
||
|
"start": "webpack-dev-server"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/Sarsoo/game-of-life.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"webassembly",
|
||
|
"wasm",
|
||
|
"rust",
|
||
|
"webpack"
|
||
|
],
|
||
|
"author": "sarsoo",
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/Sarsoo/game-of-life/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/Sarsoo/game-of-life#readme",
|
||
|
"dependencies": {
|
||
|
"game-of-life": "file:../pkg"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"copy-webpack-plugin": "^5.1.2",
|
||
|
"webpack": "^4.44.2",
|
||
|
"webpack-cli": "^3.1.0",
|
||
|
"webpack-dev-server": "^3.1.5"
|
||
|
}
|
||
|
}
|