-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "strangeluv-core",
"version": "2.0.0",
"description": "Core wiring and hapi plugin for the strangeluv React boilerplate",
"main": "lib/index.js",
"scripts": {
"test": "lab -a code && eslint src test",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BigRoomStudios/strangeluv-core.git"
},
"keywords": [
"react",
"redux",
"boilerplate",
"wiring",
"plugin",
"hapi"
],
"author": "Devin Ivy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BigRoomStudios/strangeluv-core/issues"
},
"homepage": "https://github.com/BigRoomStudios/strangeluv-core#readme",
"peerDependencies": {
"hapi": ">=17 <18"
},
"dependencies": {
"inert": "5.x.x",
"webpack-dev-middleware": "1.x.x",
"webpack-hot-middleware": "2.x.x"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-preset-es2015": "6.x.x",
"eslint": "3.x.x",
"eslint-config-hapi": "11.x.x",
"eslint-plugin-hapi": "4.x.x",
"code": "5.x.x",
"lab": "15.x.x"
}
}