-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "hapi-riot",
"description": "Render Riot.js Components with Vision in your Hapi.js Web Applications!",
"version": "3.0.1",
"main": "lib/index.js",
"homepage": "https://github.com/dwyl/hapi-riot",
"repository": {
"type": "git",
"url": "https://github.com/dwyl/hapi-riot"
},
"engines": {
"node": ">=4.5.0"
},
"scripts": {
"quick": "./node_modules/tape/bin/tape ./test/*.test.js | node_modules/tap-spec/bin/cmd.js",
"test": "istanbul cover ./node_modules/tape/bin/tape ./test/*.test.js | node_modules/tap-spec/bin/cmd.js",
"coverage": "npm run test && istanbul check-coverage",
"lint": "node_modules/.bin/goodparts .",
"start": "npm run compile:basic && node example/basic/server.js",
"report": "open coverage/lcov-report/index.html",
"compile:basic": "node_modules/.bin/riot example/basic/views/ example/basic/bundle.js",
"compile:counter": "node_modules/.bin/riot example/counter/views/ example/counter/bundle.js",
"compile:examples": "npm run compile:basic && npm run compile:counter"
},
"pre-commit": [
"lint",
"coverage"
],
"devDependencies": {
"decache": "^4.1.0",
"goodparts": "^1.1.1",
"hapi": "^15.0.3",
"inert": "^4.0.2",
"istanbul": "^0.4.5",
"level": "^1.4.0",
"pre-commit": "^1.1.3",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"vision": "^4.1.0"
},
"license": "MIT",
"dependencies": {
"riot": "^3.0.5"
},
"bugs": {
"url": "https://github.com/dwyl/hapi-riot/issues"
}
}