Skip to content

Commit

Permalink
initialise files and packages
Browse files Browse the repository at this point in the history
  • Loading branch information
roshlarosh committed Nov 20, 2019
1 parent 591d3ec commit 27c989b
Show file tree
Hide file tree
Showing 10 changed files with 4,253 additions and 0 deletions.
4,205 changes: 4,205 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "week4-cikp-autocomplete",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "nodemon test/tests.js | tap-spec",
"cover": "nyc tape test/tests.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac18/week4-cikp-autocomplete.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac18/week4-cikp-autocomplete/issues"
},
"homepage": "https://github.com/fac18/week4-cikp-autocomplete#readme",
"devDependencies": {
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
}
}
18 changes: 18 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="autocomplete website">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Autocomplete</title>
</head>
<body>
<h1>Country-Dish Autocomplete</h1>
<form action="" aria-label="autocomplete country-dish search">
<input type="text">
<input type="submit" value="search">
</form>
</body>
</html>

Empty file added public/main.js
Empty file.
Empty file added public/request.js
Empty file.
Empty file added public/style.css
Empty file.
Empty file added src/handlers.js
Empty file.
Empty file added src/router.js
Empty file.
Empty file added src/server.js
Empty file.
Empty file added test/test.js
Empty file.

0 comments on commit 27c989b

Please sign in to comment.