forked from haxtheweb/unbundled-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 947 Bytes
/
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
{
"name": "unbundled-webcomponents",
"version": "0.0.0",
"description": "a boilerplate",
"main": "index.html",
"repository": {
"type": "git",
"url": "[email protected]/elmsln/unbundled-webcomponents.git"
},
"author": {
"name": "btopro"
},
"license": "Apache-2.0",
"dependencies": {
},
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"gulp": "4.0.2",
"gulp-terser": "1.2.0",
"polymer-build": "3.1.4",
"polymer-cli": "1.9.11",
"glob": "^7.1.6"
},
"scripts": {
"postinstall": "cd app && yarn install && cd ../",
"build": "cd app && polymer build && cd ../ && yarn run move-build && yarn run terser && yarn run wc-autoloader",
"move-build": "gulp move-build --gulpfile=gulpfile.cjs",
"start": "yarn run build",
"terser": "gulp terser --gulpfile=gulpfile.cjs",
"wc-autoloader": "gulp wc-autoloader --gulpfile=gulpfile.cjs"
}
}