forked from HenrikJoreteg/hjs-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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
{
"name": "hjs-webpack",
"description": "Presets for setting up webpack with hotloading react and ES6(2015) using Babel.",
"version": "5.0.0",
"author": "Henrik Joreteg <henrik@andyet.net>",
"bugs": {
"url": "https://github.com/henrikjoreteg/hjs-webpack/issues"
},
"dependencies": {
"extract-text-webpack-plugin": "0.8.2",
"find-root": "0.1.1",
"lodash.assign": "3.2.0",
"lodash.defaults": "3.1.2",
"lodash.pick": "3.1.0",
"rimraf": "2.4.3"
},
"devDependencies": {
"standard": "5.3.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"homepage": "https://github.com/henrikjoreteg/hjs-webpack",
"keywords": [
"config",
"human javascript",
"webpack"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"webpack-dev-server": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/henrikjoreteg/hjs-webpack"
},
"scripts": {
"test": "standard"
},
"standard": {
"ignore": [
"examples/*/public/*",
"examples/*/node_modules/*"
]
}
}