-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "nohost",
"description": "A web server in your web browser",
"version": "1.1.4",
"keywords": [
"web",
"server",
"files"
],
"author": "David Humphrey <david.humphrey@senecacolleage.ca> (@humphd)",
"homepage": "http://humphd.github.io/nohost/",
"license": "Apache-2.0",
"scripts": {
"eslint": "eslint src example",
"test": "npm run eslint",
"build-example": "copyfiles -u 1 example/index* dist",
"build-sw": "parcel build src/nohost-sw.js --detailed-report",
"prebuild": "npm run build-example",
"build": "npm run build-sw",
"predev": "npm run build",
"dev": "http-server dist/",
"release": "run.env release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/humphd/nohost.git"
},
"files": [
"dist/nohost-sw.js",
"dist/nohost-sw.map"
],
"dependencies": {},
"devDependencies": {
"browser-mime": "^1.0.1",
"copyfiles": "^2.1.0",
"eslint": "^5.16.0",
"filer": "^1.1.2",
"http-server": "^0.11.1",
"parcel": "^1.12.3",
"release-it": "^10.4.0",
"run.env": "^1.1.0",
"workbox-window": "^4.2.0"
}
}