-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
111 lines (111 loc) · 2.96 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
{
"name": "hapi-react-redux",
"version": "3.1.0",
"description": "Hapi rendering plugin for react and redux apps",
"keywords": "react, redux, hapi, react-router, react-router-fetch",
"main": "plugin/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kellyrmilligan/hapi-react-redux.git"
},
"scripts": {
"build": "npm-run-all -l clean standard babel",
"babel": "babel src -d . -D -s",
"babel:watch": "babel src -d . -w -D -s",
"clean": "rimraf ./plugin ./fixtures",
"dev": "npm-run-all -l clean -p babel:watch standard:watch",
"prepublish": "npm-run-all -l test build",
"standard": "standard --fix --verbose | snazzy",
"standard:watch": "onchange -i 'src/**/*.js' -- npm run standard",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"author": "Kelly Milligan",
"license": "ISC",
"jest": {
"roots": [
"src"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"js",
"json"
],
"coverageDirectory": "coverage",
"collectCoverage": true,
"testRegex": "(/__tests__/.*|\\.(test))\\.js$",
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"/script/"
]
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/src/fixtures/**/*.js"
]
},
"dependencies": {
"boom": "^7.2.0",
"hoek": "^5.0.1",
"prop-types": "^15.6.0",
"query-string": "^6.0.0",
"serialize-javascript": "^1.3.0"
},
"peerDependencies": {
"babel-runtime": "^6.26.0",
"boom": "^7.1.1",
"hapi": "^17.2.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-fetch": "^2.2.0",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.26.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.0",
"hapi": "^17.2.3",
"jest": "^22.0.0",
"nodemon": "^1.9.0",
"npm-run-all": "^4.0.1",
"onchange": "^3.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-fetch": "^2.2.0",
"redux": "^3.7.2",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"snazzy": "^7.0.0",
"source-map-support": "^0.5.0",
"standard": "^11.0.1"
}
}