-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "@petitatelier/slideshow",
"private": true,
"description": "A multiplex slideshow system, spreading a presentation on multiple displays",
"author": "Olivier & Yves Lange",
"license": "BSD-3-Clause",
"scripts": {
"bootstrap": "npm install && ./scripts/bootstrap.sh && npm run build",
"build": "npx lerna run build",
"dev": "polyserve --npm --module-resolution=node --open-path=demos/index.html --hostname $npm_package_config_http_server_host --port $npm_package_config_http_server_port",
"watch": "npm run dev & browser-sync http://$npm_package_config_http_server_host:$npm_package_config_http_server_port --no-open --files \"./packages/**/*,./demos/**/*\"",
"publish": "npx lerna publish"
},
"config": {
"http-server": {
"host": "0.0.0.0",
"port": "8081"
}
},
"devDependencies": {
"@webcomponents/webcomponentsjs": "^2.2.10",
"lerna": "^3.14.1",
"polyserve": "^0.27.15"
},
"peerDependencies": {
"browser-sync": "^2.26.5"
},
"keywords": [
"slideshow",
"multiplex",
"diapositive",
"slide",
"deck",
"webcomponents"
],
"repository": {
"type": "git",
"url": "git+https://github.com/petitatelier/slideshow.git"
}
}