-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.94 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
{
"name": "lambda-pdfxs3",
"version": "1.1.1",
"description": "Monitor some s3 bucket for pdf upload and extract to another bucket",
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"serverless": "node_modules/.bin/serverless",
"sls": "node_modules/.bin/serverless",
"deploy": "npm run lint && sls deploy --stage prod",
"service-info": "sls info --stage prod",
"lint": "eslint --ext .js,.jsx ./",
"lint-fix": "eslint --fix --ext .js,.jsx ./",
"local": "DEBUG=lambda-pdfxs3 SLS_DEBUG=* node_modules/.bin/serverless offline --stage dev",
"test": "DEBUG=lambda-pdfxs3 jest --detectOpenHandles -t --testPathIgnorePatterns s3Handler.test.js",
"test-all": "DEBUG=lambda-pdfxs3 jest --detectOpenHandles",
"test-one": "DEBUG=lambda-pdfxs3 SLS_DEBUG=* jest --detectOpenHandles -t"
},
"author": "Tom Noogen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/niiknow/lambda-pdfxs3.git"
},
"dependencies": {
"async": "^3.2.5",
"debug": "^4.3.4",
"got-cjs": "^12.5.4",
"mime-types": "^2.1.35",
"mkdirp": "^3.0.1",
"recursive-readdir-sync": "^1.0.6",
"source-map-support": "^0.5.21",
"uuid": "^9.0.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.3",
"@babel/register": "^7.22.15",
"@babel/runtime": "^7.23.4",
"aws-sdk": "^2.1501.0",
"babel-loader": "^9.1.3",
"babel-plugin-source-map-support": "^2.2.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"serverless": "^3.37.0",
"serverless-offline": "^13.3.0",
"serverless-webpack": "^5.13.0",
"webpack": "^5.89.0",
"webpack-node-externals": "^3.0.0"
}
}