forked from Enigmatic-Smile/serverless-plugin-optimize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "@flashcoffee/serverless-optimize",
"version": "1.0.0",
"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": "Flash Coffee",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flashcoffeetech/serverless-optimize.git"
},
"keywords": [
"serverless plugin optimize handler",
"serverless optimizer",
"serverless plugin",
"lambda serverless",
"optimize lambda"
],
"bugs": {
"url": "https://github.com/flashcoffeetech/serverless-optimize/issues"
},
"homepage": "https://github.com/flashcoffeetech/serverless-optimize#readme",
"dependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"babel-preset-minify": "^0.5.2",
"babelify": "^10.0.0",
"bluebird": "^3.7.2",
"browserify": "^17.0.0",
"fs-extra": "^10.1.0",
"resolve-from": "^5.0.0"
},
"devDependencies": {
"standard": "^17.0.0"
}
}