forked from EsunR/s3-image-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "s3-image-handler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"packageManager": "[email protected]",
"volta": {
"node": "18.17.0"
},
"scripts": {
"build": "gulp -f ./build/gulpfile.ts",
"lambda:publish": "sh ./publish.sh",
"lambda:update": "sh ./update.sh",
"clean:node_modules": "find . -name \"node_modules\" -type d -exec rm -rf '{}' +",
"test:viewer-request": "ts-node -r tsconfig-paths/register ./test/viewer-request.ts",
"test": "jest --config ./jest.config.js --silent",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .ts,.js ./ --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/gulp": "^4.0.13",
"@types/gulp-zip": "^4.0.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"cross-env": "^7.0.3",
"del": "^6.1.1",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"fast-glob": "^3.3.1",
"gulp": "^4.0.2",
"gulp-zip": "^5.1.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"rollup": "^3.27.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}