-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.6 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
{
"name": "@petitatelier/web-components-primer",
"version": "0.1.0",
"description": "« A Primer on Web Components » conference slideshow",
"main": "public/index.html",
"scripts": {
"dev": "polyserve --npm --module-resolution=node --hostname 0.0.0.0 --port 8081 --root public/",
"build-mv-sw": "mv build/esm-unbundled/service-worker.js build/esm-unbundled/public/",
"build-subst-sw": "if [ \"`uname`\" = \"Darwin\" ]; then sed -i '' -e 's/\"public\\//\"/g' build/esm-unbundled/service-worker.js; else sed -i -e 's/\"public\\//\"/g' build/esm-unbundled/service-worker.js; fi",
"build": "npm run build:static",
"build:static": "polymer build && npm run build-subst-sw && npm run build-mv-sw",
"serve": "polymer serve --hostname 0.0.0.0 --port 8001 --root public/",
"serve:static": "polymer serve --hostname 0.0.0.0 --port 8000 --root build/esm-unbundled/public/",
"postshrinkwrap": "if [ \"`uname`\" = \"Darwin\" ]; then sed -i '' -e 's/http:\\/\\//https:\\/\\//g' package-lock.json; else sed -i -e 's/http:\\/\\//https:\\/\\//g' package-lock.json; fi"
},
"devDependencies": {
"polymer-cli": "^1.9.7",
"polyserve": "^0.27.15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petitatelier/web-components-primer.git"
},
"keywords": [
"primer",
"webcomponents",
"talk",
"conference",
"slideshow"
],
"author": "Olivier & Yves Lange",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/petitatelier/web-components-primer/issues"
},
"homepage": "https://github.com/petitatelier/web-components-primer#readme"
}