This repository has been archived on 2020-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
requestor/package.json

29 lines
613 B
JSON
Raw Normal View History

2019-12-10 15:59:12 +01:00
{
2019-12-11 10:51:54 +01:00
"name": "@scode/requestor",
2019-12-11 12:03:20 +01:00
"version": "1.0.3",
2019-12-10 15:59:12 +01:00
"description": "Split express paths into individual files to make api programming more structured",
"main": "index.js",
"scripts": {
2020-01-15 15:52:06 +01:00
"test": "mocha",
"lint": "eslint --fix ."
2019-12-10 15:59:12 +01:00
},
"repository": {
"type": "git",
"url": "https://git.scode.ovh/timo/requestor.git"
},
"keywords": [
"express"
],
"author": "Timo Hocker",
2020-01-17 13:17:25 +01:00
"license": "BSD-3-Clause",
2020-01-30 11:27:21 +01:00
"engines": {
"node": ">=10.0.0"
2020-01-30 10:51:05 +01:00
},
2019-12-10 15:59:12 +01:00
"devDependencies": {
2020-01-30 11:27:21 +01:00
"@scode/eslint-config": "^1.2.8",
2019-12-10 15:59:12 +01:00
"chai": "^4.2.0",
2020-01-03 19:13:21 +01:00
"eslint": "^6.8.0",
2020-01-30 10:41:11 +01:00
"mocha": "^7.0.1"
2019-12-10 15:59:12 +01:00
}
}