-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.23 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@hydecorp/drawer",
"version": "1.0.0",
"description": "A touch-enabled drawer component for the modern web",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"src",
"lib",
"module",
"tsconfig.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf lib module",
"test": "exit 0",
"build:tsc": "tsc -d",
"watch:tsc": "tsc -d -w",
"build:rollup": "rollup -c",
"watch:rollup": "rollup -c -w",
"build": "npm run build:tsc & npm run build:rollup & wait",
"watch": "npm run watch:tsc & npm run watch:rollup",
"serve": "serve -l 3337",
"dev": "npm run watch & npm run serve",
"preversion": "sed -i '' -E 's:^(lib|docs/assets/hy-\\*)$:#<removed temporarily>\\1:' .gitignore",
"version": "npm run build && git add .",
"postversion": "sed -i '' -E 's:^#<removed temporarily>(lib|docs/assets/hy-\\*)$:\\1:' .gitignore && git rm --cached -r lib docs/assets/hy-* && git add . && git commit -m 'Restore preversion .gitignore'",
"prepack": "npm run clean && npm run build"
},
"author": "Florian Klampfer <[email protected]> (https://qwtel.com/)",
"license": "GPL-3.0",
"devDependencies": {
"rollup": "^2.67.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@hydecorp/component": "^1.0.0",
"@types/resize-observer-browser": "^0.1.7",
"@types/w3c-css-typed-object-model-level-1": "^20180410.0.4",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"rxjs": "^7.5.2",
"tslib": "^2.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydecorp/drawer.git"
},
"bugs": {
"url": "https://github.com/hydecorp/drawer/issues"
},
"homepage": "https://hydecorp.github.io/drawer/",
"tags": [
"drawer",
"touch-events",
"swipe-gestures",
"webcomponent",
"jquery",
"rxjs",
"hydejack",
"jquery-plugin",
"vanilla-js",
"drawer-layout",
"custom-element",
"vanilla",
"web-components",
"ui-component",
"reactive",
"menu",
"menu-navigation"
]
}