-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "@ptim/local-proxy",
"description": "Friendly middleware to proxy local files using browser-sync",
"keywords": [
"browser-sync",
"proxy",
"local",
"wordpress",
"front-end"
],
"author": "Tim Osborn",
"repository": {
"type": "git",
"url": "git://github.com/ptim/local-proxy.git"
},
"type": "module",
"node": "^12.20.0 || ^14.13.1 || >=16.0.0",
"bin": {
"local-proxy": "lib/local-proxy.js"
},
"dependencies": {
"browser-sync": "^2.27.7",
"dedent": "^0.7.0",
"eazy-logger": "^3.0.2",
"fast-glob": "^3.2.7",
"mime": "^3.0.0",
"node-fetch": "^3.2.1"
},
"devDependencies": {
"eslint": "^8.5.0"
},
"scripts": {
"start": "node lib/local-proxy.js",
"// npm version example": "npm version minor",
"// npm version reference": "https://blog.npmjs.org/post/184553141742/easy-automatic-npm-publishes#branchs-and-dist-tags",
"preversion": "npm test",
"postversion": "npm publish --access public && echo https://www.npmjs.com/package/@ptim/local-proxy",
"postpublish": "git push origin --all && git push --tags",
"test": "echo 'TODO' && exit 0"
},
"version": "1.2.2"
}