-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 KB
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
{
"name": "backloop.dev",
"version": "3.0.2",
"description": "Local HTTPS development with *.backloop.dev pointing to localhost and SSL certificates",
"keywords": [
"SSL",
"HTTPS",
"localhost",
"loopback",
"local development",
"proxy",
"reverse proxy",
"static server",
"multi-host",
"SNI",
"mixed content",
"CORS",
"same-origin policy",
"certificates"
],
"homepage": "https://github.com/perki/backloop.dev",
"bugs": {
"url": "https://github.com/perki/backloop.dev/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:perki/backloop.dev.git"
},
"license": "BSD-3-Clause",
"author": "Perki (https://backloop.dev)",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.mjs",
"require": "./src/index.js"
}
},
"main": "src/index.js",
"module": "src/index.mjs",
"types": "src/index.d.ts",
"bin": {
"backloop.dev": "bin/webserver.js",
"backloop.dev-proxy": "bin/proxy.js",
"backloop.dev-update": "bin/update.js"
},
"scripts": {
"postinstall": "node bin/update.js",
"test": "node --test test/*.test.js",
"lint": "eslint .",
"proxy": "node src/webserver/proxy.js",
"start": "node src/webserver/main.js"
},
"devDependencies": {
"neostandard": "^0.12.2"
}
}