-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.49 KB
/
package.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "middlewarify",
"description": "Apply the middleware pattern to any function.",
"version": "2.2.0",
"main": "./src/middlewarify",
"homepage": "https://github.com/thanpolas/middlewarify",
"author": {
"name": "Thanasis Polychronakis",
"url": "http://thanpol.as"
},
"repository": {
"type": "git",
"url": "git://github.com/thanpolas/middlewarify.git"
},
"bugs": {
"url": "https://github.com/thanpolas/middlewarify/issues"
},
"license": "ISC",
"engines": {
"node": ">= 10"
},
"scripts": {
"test": "npm run eslint; mocha -u tdd -R spec test/",
"eslint": "eslint middlewarify.js test",
"release": "release-it --ci",
"release:minor": "release-it minor --ci",
"release:major": "release-it major --ci"
},
"dependencies": {
"lodash": "~4.17.21",
"async": "~3.2.1"
},
"devDependencies": {
"chai": "~4.3.4",
"eslint": "~7.32.0",
"eslint-config-airbnb-base": "~14.2.1",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-import": "~2.24.2",
"eslint-plugin-jest": "~24.4.0",
"eslint-plugin-jsdoc": "~36.1.0",
"eslint-plugin-prettier": "~4.0.0",
"eslint-plugin-security": "~1.4.0",
"mocha": "~9.1.1",
"prettier": "~2.4.0",
"release-it": "^14.11.5",
"sinon": "~11.1.2"
},
"keywords": [
"middleware",
"middleware pattern"
]
}