initial npm package

This commit is contained in:
Adam Powers
2020-08-30 12:00:39 -07:00
parent 356e7432e7
commit b0e77f7729
4 changed files with 286 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"name": "nethack",
"version": "1.0.0",
"description": "The original NetHack rogue-like game built as a WebAssembly module",
"main": "src/nethackShim.js",
"scripts": {
"test": "node test/test.js",
"clean": "rm ./build/nethack.js; rm ./build/nethack.wasm; true",
"build": "cp ../../../src/nethack.js ../../../src/nethack.wasm ./build",
"prepack": "npm run build"
},
"keywords": [
"nethack",
"rogue",
"rogue-like",
"game"
],
"author": "Adam Powers <apowers@ato.ms>",
"license": "SEE LICENSE IN LICENSE.md"
}