-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 2.34 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
{
"name": "live-reload",
"version": "1.8.4",
"description": "Monitors source files on a page. Reloads the page or just the changed stylesheet when source files are updated.",
"main": "npm run build",
"config": {
"webpack": "webpack --devtool source-map --require ts-node/register --config webpack.config.ts"
},
"scripts": {
"lint": "tslint -p . --fix",
"tag": "git tag $npm_package_version && git push origin $npm_package_version && npm run get_source",
"get_source": "curl -sSL -o dist/$npm_package_version.zip https://github.com/blaise-io/live-reload/archive/$npm_package_version.zip",
"test": "supervisor -w test/* test/test.js",
"build": "npm run firefox.build; npm run chrome.build",
"chrome.dev": "BROWSER=chrome $npm_package_config_webpack --watch --run-dev",
"chrome.build": "BROWSER=chrome $npm_package_config_webpack --run-prod",
"firefox.dev": "BROWSER=firefox $npm_package_config_webpack --watch --run-dev",
"firefox.build": "BROWSER=firefox $npm_package_config_webpack --run-prod",
"firefox.debug": "(cd dist/firefox && web-ext run --verbose -u http://localhost:3000/)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blaise-io/live-reload.git"
},
"author": "Blaise Kal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blaise-io/live-reload/issues"
},
"homepage": "https://github.com/blaise-io/live-reload#readme",
"dependencies": {
"@types/clean-webpack-plugin": "0.1.2",
"@types/extract-text-webpack-plugin": "3.0.3",
"@types/firefox-webext-browser": "70.0.1",
"@types/html-webpack-plugin": "2.30.3",
"@types/mini-css-extract-plugin": "0.2.0",
"@types/node": "12.0.2",
"@types/webpack": "4.4.32",
"@types/zip-webpack-plugin": "3.0.0",
"clean-webpack-plugin": "0.1.19",
"core-js": "3.1.2",
"css-loader": "3.4.2",
"dts-gen": "0.5.7",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "1.1.11",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "0.4.0",
"ts-loader": "6.0.1",
"ts-node": "8.1.0",
"tslint": "6.0.0",
"typescript": "3.4.5",
"webextension-polyfill": "0.6.0",
"webpack": "4.32.2",
"webpack-command": "0.4.2",
"zip-webpack-plugin": "3.0.0"
},
"devDependencies": {
"express": "4.17.0",
"supervisor": "0.12.0"
}
}