-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.32 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
{
"name": "svelte-panel-click",
"version": "1.0.2",
"description": "Small web component to determine if clicks occur inside or outside a panel.",
"main": "dist/PanelClick.cjs.js",
"module": "dist/PanelClick.es2015.js",
"svelte": "PanelClick.html",
"files": [
"PanelClick.html",
"dist/PanelClick.cjs.js",
"dist/PanelClick.es2015.js",
"dist/PanelClick.html"
],
"scripts": {
"prebuild": "rm -rf dist && mkdir -p dist",
"build": "npm run build:module && npm run build:legacy && npm run build:html",
"build:module": "svelte compile --format=es PanelClick.html > dist/PanelClick.es2015.js",
"build:legacy": "svelte compile --format=cjs PanelClick.html > dist/PanelClick.cjs.js",
"build:html": "cp PanelClick.html dist/PanelClick.html",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saibotsivad/svelte-panel-click.git"
},
"keywords": [
"svelte",
"click"
],
"author": "saibotsivad",
"license": "VOL",
"bugs": {
"url": "https://github.com/saibotsivad/svelte-panel-click/issues"
},
"homepage": "https://github.com/saibotsivad/svelte-panel-click#readme",
"devDependencies": {
"jsdom": "^13.1.0",
"register-svelte-require": "0.0.1",
"svelte": "2.8.0",
"svelte-cli": "3.0.0",
"tape": "4.9.1"
}
}