forked from alixaxel/chrome-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.21 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": "chrome-aws-lambda",
"private": false,
"version": "2.1.1",
"author": {
"name": "Alix Axel"
},
"license": "MIT",
"description": "Chromium Binary for AWS Lambda and Google Cloud Functions",
"main": "source/index.js",
"typings": "source/index.d.ts",
"files": [
"bin",
"source"
],
"engines": {
"node": ">= 8.10"
},
"scripts": {
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"lambdafs": "^1.3.0"
},
"devDependencies": {
"@types/puppeteer": "~2.0.0"
},
"peerDependencies": {
"puppeteer-core": "2.1.x"
},
"bugs": {
"url": "https://github.com/alixaxel/chrome-aws-lambda/issues"
},
"homepage": "https://github.com/alixaxel/chrome-aws-lambda",
"repository": {
"type": "git",
"url": "git://github.com/alixaxel/chrome-aws-lambda.git"
},
"keywords": [
"aws",
"browser",
"chrome",
"chromium",
"lambda",
"puppeteer",
"serverless"
],
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"printWidth": 140,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}