-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
96 lines (96 loc) · 2.36 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "prouter",
"description": "Fast, unopinionated, minimalist client-side routing library inspired by the simplicity and flexibility of express middlewares",
"version": "10.0.27",
"main": "prouter.min.js",
"homepage": "https://github.com/rogerpadilla/prouter",
"bugs": {
"url": "https://github.com/rogerpadilla/prouter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogerpadilla/prouter.git"
},
"scripts": {
"eslint": "eslint --fix 'src/**/*.ts'",
"lint": "npm run eslint",
"test": "rimraf coverage && npm run lint && jest",
"test.watch": "npm run lint && rimraf coverage && jest --watchAll",
"start": "rimraf dist && webpack --watch",
"build": "rimraf dist && NODE_ENV=production webpack"
},
"keywords": [
"client-side",
"browser",
"web",
"mobile",
"router",
"routing",
"library",
"middleware"
],
"license": "MIT",
"contributors": [
"Roger Padilla <rogerpadilla>"
],
"dependencies": {
"path-to-regexp": "~0.1.11"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.8.4",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"copy-webpack-plugin": "^12.0.2",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"source-map-loader": "^5.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*.spec.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"collectCoverage": true,
"coverageReporters": [
"html",
"lcov"
],
"coverageDirectory": "coverage"
}
}