Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "chip8js", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "A Chip-8 emulator written in JavaScript (Node.js).", | ||
@@ -22,5 +22,11 @@ "author": { | ||
}, | ||
"keywords": [ "chip8", "chip8-emulator", "chip-8", "node", "javascript" ], | ||
"keywords": [ | ||
"chip8", | ||
"chip8-emulator", | ||
"chip-8", | ||
"node", | ||
"javascript" | ||
], | ||
"license": "MIT", | ||
"public": true | ||
} |
@@ -9,3 +9,3 @@ # Chip8.js [![Build Status](https://travis-ci.org/taniarascia/chip8.svg?branch=master)](https://travis-ci.org/taniarascia/chip8) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) | ||
- [Motivation](#concepts) | ||
- [Motivation](#motivation) | ||
- [Installation](#installation) | ||
@@ -25,3 +25,3 @@ - [Usage](#usage) | ||
Chip8.js is an ongoing project to write a Chip-8 emulator in JavaScript. The main motivation is to learn lower level programming concepts, detailed [here](#concepts), and to increase familiarity with the Node.js environment. | ||
Chip8.js is an ongoing project to write a Chip-8 emulator in JavaScript. The main motivation is to learn lower level programming concepts and to increase familiarity with the Node.js environment. | ||
@@ -28,0 +28,0 @@ Here are some of the concepts I learned while writing this program: |
191379