forked from outmoded/tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.57 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "tv",
"description": "Interactive debug console plugin for hapi",
"version": "4.0.0",
"repository": "git://github.com/hapijs/tv",
"main": "index",
"keywords": [
"debug",
"console",
"hapi",
"plugin"
],
"engines": {
"node": ">=0.10.32"
},
"dependencies": {
"backbone": "^1.1.2",
"bootstrap": "^3.3.1",
"chance": "^0.7.0",
"handlebars": "2.0.x",
"hbsfy": "^2.2.0",
"hoek": "2.x.x",
"jquery": "^2.1.1",
"json-markup": "^0.1.6",
"lodash": "^2.4.1",
"moment": "^2.8.4",
"ws": "0.4.x",
"zeroclipboard": "^2.1.6"
},
"peerDependencies": {
"hapi": ">=8.x.x"
},
"devDependencies": {
"browserify": "^6.3.2",
"browserify-istanbul": "^0.1.2",
"chai": "^1.10.0",
"chai-jquery": "^2.0.0",
"code": "^1.2.1",
"es5-shim": "^4.0.5",
"istanbul": "^0.3.5",
"lab": "5.x.x",
"mocha": "^2.0.1",
"mocha-phantomjs": "^3.5.2",
"node-sass": "^1.2.3",
"onchange": "0.0.2",
"phantomjs": "^1.9.12",
"sinon": "^1.12.1",
"sinon-chai": "^2.6.0",
"watchify": "^2.1.1",
"hapi": ">=8.x.x"
},
"scripts": {
"test": "make test-client && make test-cov",
"test-client-cov": "npm run build-test && npm run test && istanbul report --root coverage lcov",
"watch-js": "watchify -t hbsfy -e source/js/app.js source/js/**/*.js -o public/js/main.js -d -v",
"watch-test": "watchify -t hbsfy -e test/client/main.js test/client/**/*.js -o test/bundle.js -d -v",
"watch-styles": "node-sass source/styles/style.scss public/css/style.css -w source/styles -r",
"watch": "npm run build && npm run watch-js & npm run watch-test & npm run watch-styles & npm run post-js",
"copy-fonts": "cp -R source/fonts/vendor/bootstrap/** public/fonts",
"copy-assets": "cp -R vendor/ZeroClipboard.swf public/js",
"build-js": "browserify -t hbsfy -e source/js/app.js source/js/**/*.js > public/js/main.js -d",
"build-test": "browserify -t hbsfy -t [ browserify-istanbul --ignore **/*.hbs ] test/client/main.js -o test/bundle.js",
"build-styles": "node-sass source/styles/style.scss public/css/style.css",
"build": "npm run build-js && npm run build-styles && npm run build-test && npm run copy-fonts && npm run copy-assets",
"boot": "node examples/simple.js",
"start": "npm run build && npm run boot",
"start-dev": "npm run watch & npm run boot",
"post-js": "onchange test/bundle.js -- npm run test",
"prepublish": "npm run build"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/hapijs/tv/raw/master/LICENSE"
}
]
}