forked from JupiterOne/playwright-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "playwright-aws-lambda",
"version": "0.10.0",
"description": "Support for running Microsoft's Playwrite on AWS Lambda and Google Cloud functions",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/playwright-aws-lambda"
},
"license": "MIT",
"main": "./dist/src/",
"author": "Austin Kelleher, [email protected]",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"compile-src-cjs": "tsc --declaration --declarationDir ./dist -p tsconfig-src-cjs.json && cp -R ./src/bin ./dist/src",
"precompile-src": "rm -rf ./dist",
"compile-src": "yarn compile-src-cjs",
"lint": "tslint --format codeFrame --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
"pretest": "yarn lint",
"test": "jest",
"build": "yarn compile-src",
"format-code": "prettier --write '**/*.[jt]s'"
},
"dependencies": {
"lambdafs": "^2.1.1"
},
"peerDependencies": {
"playwright-core": "^1"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.9",
"@types/node": "~14",
"husky": "^4.2.5",
"jest": "^26.3.0",
"lint-staged": "10.2.11",
"nodemon": "^2.0.4",
"pixelmatch": "^5.2.1",
"playwright-core": "^1.3.0",
"pngjs": "^5.0.0",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}