-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 724 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "tictactoe",
"version": "0.1.0",
"description": "A two-player Tic-Tac-Toe game over the web using Socket.io",
"homepage": "http://tictactoe.intrepidcoder.com",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"author": {
"name": "Daniel Moyer",
"url": "http://www.intrepidcoder.com",
"email": "daniel@intrepidcoder.com"
},
"dependencies": {
"express": "^4.13.3",
"socket.io": "^1.3.7"
},
"repository": {
"type": "git",
"url": "git://github.com/intrepidcoder/tictactoe.git"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-uglify": "^2.0.0"
}
}