-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.2 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
80
{
"name": "@hydecorp/push-state",
"version": "1.0.0",
"description": "Turn static web sites into dynamic web apps",
"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 <mail@qwtel.com> (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",
"lit-element": "^2.5.1",
"rxjs": "^7.5.2",
"tslib": "^2.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydecorp/push-state.git"
},
"bugs": {
"url": "https://github.com/hydecorp/push-state/issues"
},
"homepage": "https://hydecorp.github.io/push-state/",
"keywords": [
"page-transitions",
"ajax",
"pjax",
"smoothstate",
"hydejack",
"vanilla",
"jquery",
"animations",
"rxjs",
"vanilla-js",
"custom-element",
"jquery-plugin",
"history-api",
"web-components",
"webcomponent",
"history-management",
"prefetch",
"page-loader",
"prefetcher",
"reactive"
]
}