-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.33 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
44
45
{
"name": "preact-touchable-dock",
"version": "0.3.5",
"description": "A touch and drag and droppable dock for single page web applications.",
"source": "src/TouchableDock.js",
"main": "dist/TouchableDock.js",
"module": "dist/TouchableDock.module.js",
"unpkg": "dist/TouchableDock.umd.js",
"scripts": {
"build:iife": "microbundle build --name TouchableDock -f iife -o dist/TouchableDock.min.js",
"build": "microbundle build --name TouchableDock && npm run build:iife",
"dev": "concurrently 'npm run watch' 'npm run serve'",
"watch": "watch 'npm run build' ./src/ -d",
"serve": "python3 -m http.server --directory dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/TimDaub/preact-touchable-dock.git"
},
"keywords": [
"preact",
"dock",
"sidebar",
"touch",
"drag",
"and",
"drop"
],
"author": "Tim Daubenschütz <tim@daubenschuetz.de> (https://timdaub.github.io)",
"bugs": {
"url": "https://github.com/TimDaub/preact-touchable-dock/issues"
},
"homepage": "https://github.com/TimDaub/preact-touchable-dock#readme",
"devDependencies": {
"concurrently": "5.2.0",
"microbundle": "0.12.3",
"watch": "1.0.2"
},
"dependencies": {
"htm": "3.0.4",
"jss": "10.3.0",
"jss-preset-default": "10.3.0",
"preact": "10.4.6"
}
}