-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 837 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 837 Bytes
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
{
"name": "@stansom/usher",
"version": "0.1.7",
"description": "A simple routing library for JS",
"main": "./dist/usher.js",
"scripts": {
"build": "npx tsc && npx webpack build",
"test": "jest ./src/test/*.test.ts"
},
"types": "./dist/ts/index.d.ts",
"keywords": [
"routing",
"route",
"router",
"path",
"url",
"react",
"node",
"simple"
],
"files": [
"dist",
"README.md"
],
"author": "Stansom",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"module": "./dist/usher.js",
"directories": {
"example": "examples"
},
"dependencies": {}
}