-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
40 lines (40 loc) · 1.16 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": "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.1.6",
"@babel/preset-env": "^7.1.6",
"babel-preset-minify": "^0.5.0",
"babelify": "^10.0.0",
"bluebird": "^3.5.3",
"browserify": "^16.2.3",
"fs-extra": "^7.0.1",
"resolve-from": "^4.0.0"
},
"devDependencies": {
"standard": "^12.0.1"
}
}