-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 760 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 760 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
30
{
"name": "JS-Tic-Tac-Toe",
"version": "1.0.0",
"description": "Tic tac toe in JavaScript",
"main": "index.js",
"engines": {
"node": "6.11.2"
},
"scripts": {
"test": "testem",
"start": "python -m SimpleHTTPServer $PORT",
"heroku-postbuild": "browserify src/index.js -o bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericdrosado/JS-Tic-Tac-Toe"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ericdrosado/JS-Tic-Tac-Toe/issues"
},
"homepage": "https://github.com/ericdrosado/JS-Tic-Tac-Toe/blob/master/README.md",
"dependencies": {
"jquery": "^3.1.0",
"handlebars": "^4.0.5",
"browserify": "14.4.0"
},
"environment": "production"
}