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

41 lines
972 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",
2020-04-16 09:44:43 +02:00
"description": "Express handler templates",
2020-04-03 15:00:49 +02:00
"main": "dist/index.js",
2019-12-10 15:59:12 +01:00
"scripts": {
2020-04-22 22:11:19 +02:00
"test": "nyc ava",
"compile": "tsc",
2020-04-09 09:14:54 +02:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue,.mjs",
2020-04-16 09:44:43 +02: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-04-22 22:11:19 +02:00
"@ava/typescript": "^1.1.1",
2020-05-02 21:29:25 +02:00
"@scode/eslint-config-ts": "^1.0.27",
2020-04-03 15:00:49 +02:00
"@stryker-mutator/core": "^3.1.0",
"@stryker-mutator/javascript-mutator": "^3.1.0",
2020-05-02 21:29:25 +02:00
"ava": "^3.8.1",
2020-02-24 12:59:16 +01:00
"eslint": "^6.8.0",
2020-04-22 22:11:19 +02:00
"nyc": "^15.0.1",
2020-04-08 15:18:14 +02:00
"typescript": "^3.8.3"
2020-04-03 15:00:49 +02:00
},
"dependencies": {
2020-05-02 21:29:25 +02:00
"@scode/consts": "^1.1.7",
"@scode/modelling": "^1.0.9",
2020-04-16 09:44:43 +02:00
"@types/express": "^4.17.6",
2020-04-23 18:58:06 +02:00
"express": "^4.17.1"
2019-12-10 15:59:12 +01:00
}
2020-02-06 17:40:23 +01:00
}