-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
71 lines (71 loc) · 2.05 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
{
"name": "router-slot",
"version": "1.5.5",
"description": "A powerful web component router",
"license": "MIT",
"author": "Andreas Mehlsen",
"types": "index.d.ts",
"module": "index.js",
"main": "index.js",
"bugs": {
"url": "https://github.com/andreasbm/router-slot/issues"
},
"homepage": "https://github.com/andreasbm/router-slot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andreasbm/router-slot.git"
},
"keywords": [
"webapp",
"custom",
"elements",
"powerful",
"routes",
"routing",
"route",
"router",
"slot",
"fragments",
"vanilla",
"web",
"component",
"router",
"navigation",
"zero dependencies"
],
"scripts": {
"b:demo:dev": "rollup -c rollup.config.ts --environment NODE_ENV:dev",
"b:demo:prod": "rollup -c rollup.config.ts --environment NODE_ENV:prod",
"s:dev": "rollup -c rollup.config.ts --watch --environment NODE_ENV:dev",
"s:prod": "rollup -c rollup.config.ts --watch --environment NODE_ENV:prod",
"s": "npm run s:dev",
"test": "karma start",
"ncu": "ncu -u -a && npm update && npm install",
"b:lib": "node pre-build.js && tsc -p tsconfig.build.json && npm run custom-elements-json",
"readme": "node node_modules/.bin/readme generate",
"postversion": "npm run readme && npm run b:lib",
"publish:patch": "np patch --contents=dist --no-cleanup",
"publish:minor": "np minor --contents=dist --no-cleanup",
"publish:major": "np major --contents=dist --no-cleanup",
"custom-elements-json": "npx wca analyze src/lib --format json --outFile dist/custom-elements.json"
},
"devDependencies": {
"@appnest/readme": "^1.2.7",
"@appnest/web-config": "^0.5.4",
"lit": "^2.2.3",
"node-typescript-compiler": "^2.4.0",
"weightless": "0.0.37"
},
"contributors": [
{
"name": "Andreas Mehlsen",
"url": "https://twitter.com/andreasmehlsen",
"img": "https://avatars1.githubusercontent.com/u/6267397?s=460&v=4"
},
{
"name": "You?",
"img": "https://joeschmoe.io/api/v1/random",
"url": "https://github.com/andreasbm/router-slot/blob/master/CONTRIBUTING.md"
}
]
}