-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 3.62 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@travi/hapi-react-router",
"license": "MIT",
"description": "hapi route to delegate routing for html content to react-router",
"version": "0.0.0-semantically-released",
"main": "lib/plugin.cjs.js",
"module": "lib/plugin.es.js",
"runkitExampleFilename": "./example/index.js",
"scripts": {
"lint:js": "eslint .",
"lint:md": "remark --quiet . --frail",
"lint:peer": "npm ls >/dev/null",
"tests:unit:no-coverage": "mocha 'src/**/*-test.js'",
"coverage": "nyc run-s tests:unit:no-coverage",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:unit": "run-s coverage",
"test:integration": "run-s test:integration:base -- --tags 'not @wip'",
"test:integration:base": "cucumber-js test/integration --require-module @babel/register --publish-quiet --format-options '{\"snippetInterface\": \"async-await\"}'",
"test:integration:debug": "DEBUG=test run-s tests:integration",
"test:integration:wip": "run-s test:integration:base -- --tags @wip",
"test": "run-s lint:* test:*",
"start": "cross-env BABEL_ENV=example babel-node ./example/app.js",
"build": "rollup -c",
"generate:md": "remark . --output",
"prepack": "npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/travi/hapi-react-router.git"
},
"keywords": [
"hapi",
"react",
"react-router",
"server-side render",
"ssr",
"redux",
"redial"
],
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"contributors": [
"Trevor Richardson <[email protected]> (https://trevorrichardson.me)"
],
"bugs": {
"url": "https://github.com/travi/hapi-react-router/issues"
},
"homepage": "https://github.com/travi/hapi-react-router#readme",
"devDependencies": {
"@babel/node": "7.16.8",
"@babel/plugin-external-helpers": "7.16.7",
"@babel/register": "7.17.7",
"@hapi/boom": "9.1.4",
"@hapi/glue": "8.0.0",
"@travi/any": "2.0.20",
"@travi/babel-preset": "3.0.82",
"@travi/eslint-config": "1.0.86",
"@travi/eslint-config-cucumber": "1.0.6",
"@travi/eslint-config-mocha": "1.0.16",
"@travi/eslint-config-react": "1.0.79",
"@travi/hapi-html-request-router": "3.0.1",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"codecov": "3.8.3",
"commitlint-config-travi": "1.4.10",
"cross-env": "7.0.3",
"@cucumber/cucumber": "7.3.2",
"cz-conventional-changelog": "3.3.0",
"good": "8.1.2",
"good-console": "8.0.0",
"good-squeeze": "5.1.0",
"husky": "7.0.4",
"material-ui": "0.20.2",
"mocha": "9.2.2",
"mustache": "4.2.0",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.9",
"react-router": "^3.2.5",
"redial": "0.5.0",
"redux": "4.1.2",
"remark-cli": "10.0.1",
"remark-preset-lint-travi": "2.0.9",
"remark-toc": "8.0.1",
"remark-usage": "10.0.1",
"rollup": "2.70.1",
"rollup-plugin-babel": "4.4.0",
"sinon": "13.0.1",
"vision": "5.4.4"
},
"peerDependencies": {
"@hapi/boom": "^8.0.0 || ^9.0.0",
"@hapi/hapi": "^18.0.0 || ^19.0.0 || ^20.0.0",
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0",
"react-router": "^3.0.5",
"redial": "^0.5.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/",
"example/"
],
"engines": {
"node": ">=12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"http-status-codes": "^2.0.0"
}
}