Code for the littler Buttons the Computer used in the Turing Machine portion of the book.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
buttons-computer/package.json

28 lines
663 B

{
"name": "buttons-computer",
"version": "1.0.0",
"description": "A simple toy fantasty computer to learn about computer using javascript.",
"main": "src/index.js",
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"test": "ava test tests",
"test-watch": "nodemon --exec npx ava tests"
},
"repository": {
"type": "git",
"url": "git@git.learnjsthehardway.com:learn-javascript-the-hard-way/buttons-computer"
},
"keywords": [
"javascript",
"fantasy-computer"
],
"author": "Zed A. Shaw",
"license": "AGPL-3.0-or-later",
"dependencies": {
"ava": "^4.2.0",
"nodemon": "^2.0.15"
}
}