forked from Enigmatic-Smile/serverless-plugin-optimize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 KB
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
{
"name": "serverless-plugin-optimize",
"version": "4.2.1-rc.1",
"description": "Bundle with Browserify, transpile and minify with Babel automatically to your NodeJS runtime compatible JavaScript.",
"main": "src/index.js",
"scripts": {
"lint": "node_modules/.bin/standard src/**",
"lint:fix": "node_modules/.bin/standard --fix src/**"
},
"author": "Gonçalo Neves",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FidelLimited/serverless-plugin-optimize.git"
},
"keywords": [
"serverless plugin optimize handler",
"serverless optimizer",
"serverless plugin",
"lambda serverless",
"optimize lambda"
],
"bugs": {
"url": "https://github.com/FidelLimited/serverless-plugin-optimize/issues"
},
"homepage": "https://github.com/FidelLimited/serverless-plugin-optimize#readme",
"dependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"babel-preset-minify": "^0.5.2",
"babelify": "^10.0.0",
"bluebird": "^3.7.2",
"browserify": "^16.5.2",
"enhanced-resolve": "^5.17.1",
"fs-extra": "^11.3.3",
"resolve-from": "^5.0.0"
},
"devDependencies": {
"standard": "^17.1.2"
}
}