Skip to content

Commit

Permalink
add package.json, deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Dec 14, 2017
1 parent 5c5a674 commit f6d6f56
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [YouTube Instant](https://ytinstant.com) - Really fast YouTube search.

It started out as a bet with my roommate, Jake Becker. I bet him I could build real-time YouTube search in less than an hour. Sadly, I lost the bet – It took me 3 hours to finish it, and another couple hours to polish the user interface into what you see now at [YTInstant.com](http://ytinstant.com). But, I’m happy with the result.
It started out as a bet with my roommate, Jake Becker. I bet him I could build real-time YouTube search in less than an hour. Sadly, I lost the bet – It took me 3 hours to finish it, and another couple hours to polish the user interface into what you see now at [YTInstant.com](https://ytinstant.com). But, I’m happy with the result.

It got 1 million visitors within 10 days of release, and the YouTube CEO, Chad Hurley, offered me a job over Twitter.

Expand Down
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "ytinstant.com",
"description": "",
"version": "1.0.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org"
},
"bugs": {
"url": "https://github.com/feross/ytinstant.com/issues"
},
"dependencies": {},
"devDependencies": {
"ecstatic": "^3.1.0"
},
"license": "MIT",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/feross/ytinstant.com.git"
},
"scripts": {
"deploy": "git push && ssh future 'cd ~/www/ytinstant.com && git pull'",
"serve": "ecstatic --port 4000 static",
"start": "npm run serve",
"watch": "npm run serve"
}
}

0 comments on commit f6d6f56

Please sign in to comment.