-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "leajs-webpack",
"description": "webpack development and hot reload middleware",
"version": "0.1.1",
"homepage": "https://github.com/lea-js/",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/lea-js/leajs-webpack"
},
"engines": {
"node": "*"
},
"main": "lib/plugin.js",
"files": [
"lib/*.js"
],
"devDependencies": {
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.2",
"script-runner": "^0.1.8",
"webpack": "^4.26.1",
"snapy": "^0.1.6",
"leajs-server": "^0.1.1"
},
"keywords": [],
"readmeFilename": "README.md",
"scripts": {
"build": "coffee --bare --no-header --compile --output lib/ src/*.coffee",
"test": "snapy",
"doc": "toDoc",
"dev": "leajs --watch",
"preversion": "npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"eventsource-polyfill": "^0.9.6",
"memory-fs": "^0.4.1",
"mime": "^2.3.1",
"read-conf": "^0.5.1",
"virtual-module-webpack-plugin": "^0.4.0",
"webpack-hot-middleware": "^2.24.3"
},
"peerDependencies": {
"webpack": "^4.26.1"
}
}