forked from shawnliujw/puppeteer-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "puppeteer-lambda",
"version": "1.1.0",
"description": "run puppeteer in lambda",
"main": "src/index.js",
"dependencies": {
"aws-sdk": "^2.391.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.3",
"download": "^7.1.0",
"node-unzip-2": "^0.2.8",
"puppeteer": "^1.16.0",
"unzipper": "^0.9.11"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"mocha": "^5.2.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"test": "node test/src/setup.test.js",
"build": "NODE_ENV=production webpack --config ./webpack.config.js --colors",
"install": "node src/install.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shawnLiujianwei/puppeteer-lambda.git"
},
"keywords": [
"Puppeteer",
"Chromeless",
"Lambda"
],
"author": "Shawn Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/shawnLiujianwei/puppeteer-lambda/issues"
},
"homepage": "https://github.com/shawnLiujianwei/puppeteer-lambda#readme"
}