Skip to content

Commit 7f5422c

Browse files
committed
package.json to specify dependencies, etc.
1 parent 54042d2 commit 7f5422c

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,7 @@ Getting Started
2929
3. install dependencies (be sure to be inside this directory)
3030

3131
# Inside the ticked directory; installing locally
32-
npm install socket.io node-static
33-
34-
# Installing globally
35-
npm install --global socket.io node-static
32+
npm install
3633

3734
(cd public && curl -O http://code.jquery.com/jquery-1.10.2.min.js)
3835
(cd public && curl -o raphael-2.1.0.min.js https://raw.github.com/DmitryBaranovskiy/raphael/v2.1.0/raphael-min.js)

package.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name" : "ticked",
3+
"version" : "0.0.1",
4+
"author" : {
5+
"name" : "Aron Atkins",
6+
"email" : "[email protected]"
7+
},
8+
"contributors" : [
9+
{
10+
"name" : "Josh Spiewak",
11+
"email" : "[email protected]"
12+
}
13+
],
14+
"bugs" : {
15+
"url" : "https://github.com/aronatkins/ticked/issues"
16+
},
17+
"dependencies" : {
18+
"socket.io" : ">= 0.9.16",
19+
"node-static" : ">= 0.7.0"
20+
},
21+
"repository" : {
22+
"type" : "git",
23+
"url" : "https://github.com/aronatkins/ticked"
24+
},
25+
"scripts": {"start": "node ticked.js"},
26+
"private" : true
27+
}

0 commit comments

Comments
 (0)