forked from vanillawc/wc-include
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 941 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
{
"name": "@vanillawc/wc-include",
"version": "1.1.22",
"license": "MIT",
"author": "Evan Plaice <evanplaice@gmail.com> (https://evanplaice.com/)",
"description": "A vanilla web component for including external media",
"keywords": [
"web-component",
"vanilla",
"include"
],
"repository": "https://github.com/vanillawc/wc-include/",
"main": "index.js",
"scripts": {
"start": "npx live-server --no-browser --port=5500 --open=dev",
"lint": "esmtk lint",
"build": "npm run build:esm && npm run build:min",
"build:esm": "esmtk bundle src/wc-include.js index.js",
"build:min": "esmtk minify src/wc-include.js index.min.js",
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
"preversion": "npm run lint",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"esmtk": "^0.5.6"
},
"standard": {
"ignore": [
"index.js"
]
}
}