-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·52 lines (52 loc) · 1.41 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
{
"name": "@stratox/pilot",
"type": "module",
"version": "1.2.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": "jasmine",
"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": "daniel.ronkainen@wazabii.se"
},
"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": {
"@babel/eslint-parser": "^7.25.9",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"express": "^4.18.2",
"jasmine": "^5.1.0"
}
}