-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.26 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
{
"name": "@stratox/pilot",
"type": "module",
"version": "1.3.0",
"description": "Stratox Pilot is a JavaScript Router Library that enables precise navigation within web applications through the use of regular expressions for route definition.",
"main": "src/index.js",
"directories": {
"src": "src"
},
"scripts": {
"start": "node ./examples/index.js",
"test": "vitest run",
"test:dev": "vitest",
"lint": "eslint . --ignore-pattern 'spec/*' --ignore-pattern 'examples/*'",
"lint:fix": "eslint --fix . --ignore-pattern 'spec/*' --ignore-pattern 'examples/*'"
},
"repository": {
"type": "git",
"url": "https://github.com/stratoxjs/StratoxPilot.git"
},
"bugs": {
"url": "https://stratox.wazabii.se/issues",
"email": "[email protected]"
},
"homepage": "https://stratox.wazabii.se/router",
"keywords": [
"javascript",
"library",
"agnostic",
"universal",
"ECMAScript",
"Node",
"router",
"modern",
"routing",
"router",
"dispatcher",
"state handler"
],
"author": "Daniel Ronkainen",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"vitest": "^2.1.8",
"express": "^4.18.2"
}
}