2020-06-10 19:11:26 +02:00
|
|
|
{
|
2020-06-10 19:48:00 +02:00
|
|
|
"name": "WasmGameOfLife",
|
2020-06-10 19:11:26 +02:00
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "Game of Life in Wasm",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "webpack --config webpack.config.js",
|
|
|
|
"start": "webpack-dev-server"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-06-10 19:48:00 +02:00
|
|
|
"url": "git+https://dev.beneth.fr/rustwasm/wasm_game_of_life"
|
2020-06-10 19:11:26 +02:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"webassembly",
|
|
|
|
"wasm",
|
|
|
|
"rust",
|
|
|
|
"webpack"
|
|
|
|
],
|
2020-06-10 19:48:00 +02:00
|
|
|
"author": "Benoît Mauduit <bmauduit@beneth.fr>",
|
2020-06-10 19:11:26 +02:00
|
|
|
"license": "(MIT OR Apache-2.0)",
|
|
|
|
"bugs": {
|
2020-06-10 19:48:00 +02:00
|
|
|
"url": "https://dev.beneth.fr/rustwasm/wasm_game_of_life/issues"
|
2020-06-10 19:11:26 +02:00
|
|
|
},
|
2020-06-10 19:48:00 +02:00
|
|
|
"homepage": "https://dev.beneth.fr/rustwasm/wasm_game_of_life",
|
2020-06-10 19:11:26 +02:00
|
|
|
"devDependencies": {
|
|
|
|
"webpack": "^4.29.3",
|
|
|
|
"webpack-cli": "^3.1.0",
|
|
|
|
"webpack-dev-server": "^3.1.5",
|
|
|
|
"copy-webpack-plugin": "^5.0.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"wasm-game-of-life": "file:../pkg"
|
|
|
|
}
|
|
|
|
}
|