forked from kriasoft/universal-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"private": true,
"name": "universal-router",
"version": "8.3.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",
"esnext": "src/UniversalRouter.js",
"types": "src/UniversalRouter.d.ts",
"dependencies": {
"path-to-regexp": "^3.1.0"
},
"devDependencies": {
"@babel/core": "",
"@babel/preset-env": "",
"@babel/register": "",
"babel-jest": "",
"eslint": "",
"eslint-config-airbnb-base": "",
"eslint-config-prettier": "",
"eslint-plugin-import": "",
"fs-extra": "",
"husky": "",
"jest": "",
"prettier": "",
"rollup": "",
"rollup-plugin-babel": "",
"rollup-plugin-commonjs": "",
"rollup-plugin-node-resolve": "",
"rollup-plugin-uglify": "",
"typescript": ""
},
"scripts": {
"lint": "node tools/lint",
"test": "node tools/test",
"build": "node tools/build",
"pre-commit": "node tools/pre-commit"
}
}