forked from ionic-team/stencil-router-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
{
"name": "@codeperate/stencil-router-v2",
"version": "0.5.1-0",
"description": "A Fork to fix scroll to top issue.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "del-cli dist && tsc -p . && npm run rollup",
"lint.prettier": "prettier --write 'src/**/*.ts'",
"release": "np",
"rollup": "rollup -c rollup.config.js",
"test": "stencil test --spec",
"version": "npm run build"
},
"keywords": [
"stencil",
"router",
"store"
],
"files": [
"dist",
"static"
],
"author": "Manu Mtz.-Almeida",
"license": "MIT",
"peerDependencies": {
"@stencil/core": ">=2.1.0-2"
},
"dependencies": {
"@stencil/store": "^1.1.0"
},
"devDependencies": {
"@stencil/core": "^2.1.0-2",
"@types/jest": "^26.0.12",
"del-cli": "^4.0.1",
"jest": "^26.5.3",
"jest-cli": "^26.5.3",
"np": "^6.5.0",
"prettier": "^2.1.2",
"rollup": "^2.32.0",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git://github.com/codeperate/stencil-router-v2.git"
},
"publishConfig": {
"access": "public"
}
}