svrrouter/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2025-01-01 18:09:15 +01:00
{
"name": "svrouter",
"version": "0.0.0",
"description": "A router library for SVR.JS 4.x mods",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist/* && swc -d dist src --strip-leading-paths",
"cz": "cz",
"lint": "eslint --no-error-on-unmatched-pattern src/**/*.js src/*.js tests/**/*.test.js tests/**/*.js",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
2025-01-01 18:14:52 +01:00
"url": "https://git.svrjs.org/svrjs/svrouter.git"
2025-01-01 18:09:15 +01:00
},
"keywords": [
"routing",
"router",
"svrjs",
"http"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@swc/cli": "^0.5.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.10"
},
"files": [
"README.md",
"LICENSE",
"dist/"
],
"dependencies": {
"path-to-regexp": "^8.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}