forked from alixaxel/chrome-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.18 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
{
"name": "chrome-aws-lambda",
"private": false,
"version": "1.14.0",
"author": {
"name": "Alix Axel"
},
"license": "MIT",
"description": "Chromium Binary for AWS Lambda",
"main": "source/index.js",
"types": "source/index.d.ts",
"files": [
"bin",
"source"
],
"engines": {
"node": ">= 8.10"
},
"scripts": {
"version": "git add -A .",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {},
"devDependencies": {
"@types/puppeteer": "~1.12.3",
"iltorb": "^2.4.2",
"puppeteer-core": "~1.14.0"
},
"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": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}