-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 935 Bytes
/
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": "elm-hot-webpack-loader",
"version": "1.1.8",
"description": "Webpack loader providing hot code swapping for Elm",
"keywords": [
"Elm",
"HMR",
"hot",
"reload",
"loader",
"webpack"
],
"author": "Keith Lazuka",
"repository": {
"type": "git",
"url": "https://github.com/klazuka/elm-hot-webpack-loader"
},
"license": "MIT",
"main": "src/index.js",
"scripts": {
"test": "./test.sh"
},
"ava": {
"files": [
"test/test.js"
]
},
"devDependencies": {
"ava": "^3.15.0",
"chokidar": "^3.5.1",
"elm-webpack-loader": "^7.0.1",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"puppeteer": "^9.1.1",
"tap-xunit": "^2.4.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"elm-webpack-loader": "^7.0.1"
},
"dependencies": {
"elm-hot": "^1.1.6"
}
}