-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "@change-org/longlinks",
"version": "0.1.8",
"description": "A serverless URL shortener that leverages Amazon Lambda for short link creation, and S3 for link storage and redirection.",
"author": "Change Engineering",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/change/longlinks.git"
},
"homepage": "https://github.com/change/longlinks",
"bugs": "https://github.com/change/longlinks/issues",
"engines": {
"node": ">=18"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.445.0",
"fnv-plus": "^1.2.12",
"jsbn": "^1.1.0",
"lodash.endswith": "^4.2.1",
"lodash.find": "^4.6.0",
"lodash.get": "^4.4.2"
},
"devDependencies": {
"@change-org/eslint-plugin-change": "^1.1.0",
"eslint": "^5.16.0",
"eslint-config-change-base": "^9.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.0",
"eslint-plugin-lodash": "^6.0.0",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"jest": "^29.1.2",
"jest-extended": "^0.11.2"
},
"scripts": {
"lint": "eslint . --cache",
"pretest": "npm run lint",
"test": "jest"
},
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
]
}
}