-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
59 lines (59 loc) · 1.64 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
{
"private": true,
"name": "universal-router",
"version": "9.2.0",
"description": "Isomorphic router for JavaScript web applications",
"homepage": "https://www.kriasoft.com/universal-router/",
"repository": "kriasoft/universal-router",
"author": "Kriasoft <[email protected]> (https://www.kriasoft.com)",
"contributors": [
"Konstantin Tarkus <[email protected]> (https://tarkus.me)",
"Vladimir Kutepov"
],
"license": "MIT",
"keywords": [
"isomorphic",
"universal",
"router",
"routing",
"routes",
"route"
],
"main": "index.js",
"module": "module.js",
"types": "src/UniversalRouter.d.ts",
"dependencies": {
"path-to-regexp": "^6.2.0"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.7",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-typescript": "8.2.1",
"@types/jest": "26.0.23",
"@types/node": "18.11.19",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"babel-jest": "27.0.5",
"eslint": "7.29.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.5",
"prettier": "2.3.1",
"rollup": "2.52.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-uglify": "6.0.4",
"ts-jest": "27.0.3",
"typescript": "4.9.5"
},
"scripts": {
"lint": "eslint . --ext .ts,.js",
"test": "jest",
"build": "node tools/build.js"
}
}