-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "hybrids-router",
"version": "2.0.0",
"description": "Declarative routing for your Hybrids app.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist/",
"clean:bundle": "rm dist/interfaces/index.js && rm dist/types/index.js",
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"build": "npm run clean && tsc --outDir dist/ --declarationDir dist/ --declaration && rollup -c && npm run clean:bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthonypenna/hybrids-router.git"
},
"keywords": [
"hybrids",
"webcomponent",
"declarative",
"router"
],
"author": "anthonypenna",
"license": "MIT",
"bugs": {
"url": "https://github.com/anthonypenna/hybrids-router/issues"
},
"homepage": "https://github.com/anthonypenna/hybrids-router#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^5.0.2",
"@types/jest": "^25.1.2",
"hybrids": "^4.2.1",
"jest": "^25.1.0",
"rollup": "^2.21.0",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^25.2.0",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
},
"dependencies": {}
}