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.
26 lines
587 B
26 lines
587 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"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
|