-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "launch-puppeteer",
"version": "0.0.3",
"description": "Launch puppeteer browser",
"homepage": "https://github.com/fisker/launch-puppeteer#readme",
"bugs": {
"url": "https://github.com/fisker/launch-puppeteer/issues"
},
"repository": "fisker/launch-puppeteer",
"funding": "https://github.com/fisker/launch-puppeteer?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "lionkay@gmail.com",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": "./index.js",
"files": [
"index.js"
],
"scripts": {
"build": "run-p build:*",
"build:js": "echo Nothing to build",
"clean": "run-p clean:*",
"clean:dist": "del-cli dist",
"dist": "run-p dist:*",
"dist:npm": "np --yolo --no-yarn",
"format": "run-p format:*",
"format:eslint": "yarn lint:eslint --fix",
"format:markdown": "yarn lint:markdown --fix",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format:prettier": "yarn lint:prettier --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint \"**/*.{js,mjs,cjs,vue}\"",
"lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"",
"lint:package-json": "yarn run format:package-json --check",
"lint:prettier": "prettier \"**/*.{css,html,js,cjs,mjs,json,less,md,scss,ts,vue,yaml,yml}\" --check",
"test": "uvu",
"test-coverage": "c8 yarn test",
"release": "run-s clean build format test dist",
"prepare": "husky install"
},
"c8": {
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"find-chrome-bin": "2.0.2",
"puppeteer-core": "22.0.0"
},
"devDependencies": {
"@fisker/eslint-config": "10.4.0",
"@fisker/husky-config": "4.1.3",
"@fisker/lint-staged-config": "3.3.2",
"@fisker/prettier-config": "5.1.1",
"c8": "10.1.3",
"del-cli": "6.0.0",
"eslint": "8.39.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"markdownlint-cli": "0.44.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"sort-package-json": "2.14.0",
"uvu": "0.5.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}