-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "middy-reroute",
"version": "2.5.4",
"description": "A middyjs middleware implementation of Netlify's redirects functionality.",
"license": "MIT",
"repository": "iDVB/middy-reroute",
"author": {
"name": "Dan Van Brunt",
"email": "[email protected]",
"url": "https://github.com/iDVB/middy-reroute"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test:lint": "eslint .",
"test:unit": "jest --verbose --coverage",
"test:unit:watch": "jest --verbose --coverage --watch",
"test": "npm run test:lint && npm run test:unit",
"jest": "jest",
"build": "rollup -c",
"release:tag": "git tag $npm_package_version && git push --tags",
"coverage:submit": "codecov"
},
"main": "lib/reroute.js",
"module": "lib/reroute.esm.js",
"files": [
"lib",
"README.md"
],
"keywords": [
""
],
"dependencies": {
"accept-language-parser": "^1.5.0",
"axios": "^0.24.0",
"debug": "^4.3.3",
"deepmerge": "^4.2.2",
"dot-prop-immutable": "^2.1.1",
"lodash.find": "^4.6.0",
"lodash.omit": "^4.5.0",
"lodash.omitby": "^4.6.0",
"lodash.reduce": "^4.6.0",
"node-cache": "^5.1.2",
"path-match": "^1.2.4",
"semver": "^7.3.5",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-external-helpers": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"aws-sdk": "^2.1046.0",
"babel-jest": "^27.4.4",
"codecov": "^3.8.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.4",
"middy": "^0.36.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"rollup": "^2.61.1",
"rollup-plugin-babel": "^4.4.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/tests/**/*.js"
],
"testEnvironment": "node"
}
}