forked from sethealth/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "@altafonte/router",
"version": "0.8.0",
"description": "This is a fork of @sethealth/router, which forks stencil-router-v2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p . && npm run rollup",
"fmt": "prettier --write 'src/**/*.ts'",
"release": "np --any-branch",
"rollup": "rollup -c rollup.config.js",
"test": "jest --passWithNoTests",
"test.ci": "npm run test && npm run test.prettier",
"test.prettier": "prettier --check 'src/**/*.ts'",
"version": "npm run build"
},
"keywords": [
"stencil",
"router",
"store"
],
"files": [
"dist"
],
"author": "Altafonte",
"license": "MIT",
"peerDependencies": {
"@stencil/core": ">=1.10.0"
},
"dependencies": {
"@stencil/store": "^1.1.0"
},
"devDependencies": {
"@stencil/core": "^2.4.0",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"np": "7.2.0",
"prettier": "^2.2.1",
"rollup": "^2.38.4",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git://github.com/altafonte/router.git"
}
}