-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
53
{
"name": "middleware-chain-js",
"version": "2.0.2",
"description": "A middleware chain component for node and the browser",
"type": "module",
"main": "./dist/index.cjs",
"module": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"dist",
"assets",
"examples",
"tests"
],
"scripts": {
"build": "npx rollup -c",
"test": "npx cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"coverage": "npx cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lint": "npx eslint .",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HQarroum/middleware-chain.git"
},
"keywords": [
"middleware",
"chain",
"responsibility"
],
"author": "Halim Qarroum",
"license": "MIT",
"bugs": {
"url": "https://github.com/HQarroum/middleware-chain/issues"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"jest": "^27.5.1",
"rollup": "^2.70.2",
"rollup-plugin-terser": "^7.0.2"
}
}