-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 870 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 870 Bytes
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
{
"name": "@lwce/router",
"version": "1.0.0",
"description": "A LWC router that supports server-side rendering",
"main": "index.js",
"private": true,
"scripts": {
"start": "lerna run start",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"postinstall": "npm run bootstrap",
"lint": "lerna run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LWC-Essentials/router.git"
},
"keywords": [
"LWC",
"web",
"components",
"router"
],
"author": "Bret Little",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/LWC-Essentials/router/issues"
},
"homepage": "https://github.com/LWC-Essentials/router#readme",
"devDependencies": {
"lerna": "^3.20.2",
"@lwc/eslint-plugin-lwc": "^0.10.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0"
}
}