router/package.json

31 lines
526 B
JSON

{
"name": "router",
"version": "2.1.0",
"description": "A slim and unopinionated router",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "karmatic"
},
"keywords": [
"router"
],
"author": "Timothy Farrell <tim@thecookiejar.me> (https://github.com/explorigin)",
"license": "Apache-2.0",
"dependencies": {
"trimkit": "^1.0.2"
},
"devDependencies": {
"husky": "^3.0.1",
"karmatic": "^1.3.1",
"webpack": "^4.37.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}