-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 886 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "@chrisharrison/simple-middleware-pipeline",
"version": "1.1.1",
"description": "A simple Typescript middleware pipeline.",
"license": "MIT",
"authors": [
{
"name": "Chris Harrison",
"email": "c.harrison1988@gmail.com",
"url": "https://chrisharrison.me.uk"
}
],
"scripts": {
"prepublish": "yarn tsc",
"test": "jest"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^27.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.0",
"typescript": "^4.4.3"
}
}