-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 KB
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
31
32
33
34
35
36
37
38
39
{
"name": "hapi-tdd-ttt",
"version": "0.0.1",
"description": "Tic-Tac-Toe TDD style!",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "./node_modules/lab/bin/lab -c",
"watch-test": "nodemon --exec npm test",
"build-js": "browserify browser/main.js | uglifyjs -mc > public/js/bundle.js",
"watch-js": "watchify browser/main.js -o public/js/bundle.js -dv"
},
"repository": {
"type": "git",
"url": "git://github.com/mindkitchen/hapi-tdd-ttt.git"
},
"keywords": [
"hapi",
"seed"
],
"contributors": [
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mindkitchen/hapi-tdd-ttt/issues"
},
"homepage": "https://github.com/mindkitchen/hapi-tdd-ttt",
"dependencies": {
"joi": "^4.6.1",
"hapi": "^6.2.0",
"handlebars": "^2.0.0-alpha.4",
"domready": "^1.0.5"
},
"devDependencies": {
"lab": "^3.2.1"
}
}