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

32 lines
755 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",
2020-02-06 12:11:13 +01:00
"version": "1.0.0",
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-02-24 12:59:16 +01:00
"test": "nyc ava",
2020-02-21 12:20:25 +01:00
"lint": "eslint .",
2020-02-06 12:05:38 +01:00
"ci": "yarn --frozen-lockfile && node jenkins.js"
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-02-06 12:05:38 +01:00
"@scode/eslint-config": "^1.2.15",
2020-03-14 14:00:47 +01:00
"@stryker-mutator/core": "^3.0.2",
"@stryker-mutator/javascript-mutator": "^3.0.2",
2020-02-24 12:59:16 +01:00
"ava": "^3.4.0",
"eslint": "^6.8.0",
"nyc": "^15.0.0"
2019-12-10 15:59:12 +01:00
}
2020-02-06 17:40:23 +01:00
}