forked from berstend/puppeteer-extra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"private": true,
"description": "Modular framework to teach Puppeteer new tricks.",
"repository": "berstend/puppeteer-extra",
"author": "berstend",
"license": "MIT",
"main": "packages/puppeteer-extra/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "yarn lerna exec --concurrency 1 'yarn build; echo 0'",
"docs": "lerna run docs",
"test": "lerna run test --concurrency 1 --stream",
"test-ci": "lerna run test-ci --concurrency 1 --stream",
"prepare": "lerna run prepare",
"release": "lerna publish --npm-client npm"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"lerna": "^3.19.0",
"lerna-update-wizard": "^0.17.5",
"prettier": "^1.19.1",
"prettier-config-standard": "^1.0.1"
},
"optionalDependencies": {
"fsevents": "^2.1.2"
},
"resolutions": {
"**/fsevents": "^2.1.2"
},
"dependencies": {},
"version": "0.0.0"
}