Code for the littler Buttons the Computer used in the Turing Machine portion of the book.
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
buttons-computer/package.json

28 行
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"
}
}