-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
170 lines (170 loc) · 4.19 KB
/
package.json
File metadata and controls
170 lines (170 loc) · 4.19 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "browserless",
"description": "the headless Chrome/Chromium performance driver for Node.js",
"homepage": "https://browserless.js.org",
"version": "",
"author": {
"email": "hello@microlink.io",
"name": "microlink.io",
"url": "https://microlink.io"
},
"contributors": [
{
"name": "Kiko Beats",
"email": "josefrancisco.verdu@gmail.com"
},
{
"name": "Rémi",
"email": "remusao@users.noreply.github.com"
},
{
"name": "Chris Talkington",
"email": "65624018+ctalkington-brado@users.noreply.github.com"
},
{
"name": "Joseba Legarreta",
"email": "josebalega@gmail.com"
},
{
"name": "Edmond Mensah",
"email": "primerossgh@gmail.com"
},
{
"name": "Aditya Wankhede",
"email": "33269256+adityawankhede5@users.noreply.github.com"
},
{
"name": "Michael Lip",
"email": "51033404+theluckystrike@users.noreply.github.com"
},
{
"name": "Dr. Thunder Cat Pea",
"email": "64536835+catpea@users.noreply.github.com"
},
{
"name": "Björn",
"email": "bjorn.lindfors@gmail.com"
},
{
"name": "Luc",
"email": "luc.leray@gmail.com"
},
{
"name": "Markus Staab",
"email": "maggus.staab@googlemail.com"
},
{
"name": "Marcel Cruz",
"email": "marcelcruz@live.com"
},
{
"name": "Rémi Berson",
"email": "remi.berson@pm.me"
},
{
"name": "pierresaid",
"email": "said.pierre.emler@gmail.com"
},
{
"name": "Timkor",
"email": "Timkor@users.noreply.github.com"
},
{
"name": "Tycho Bokdam",
"email": "tycho@palmtreecoding.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/microlinkhq/browserless.git"
},
"bugs": {
"url": "https://github.com/microlinkhq/browserless/issues"
},
"keywords": [
"browser",
"browserless",
"chrome",
"chromeless",
"headless",
"html",
"pdf",
"puppeteer",
"screenshot",
"text"
],
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@lerna-lite/cli": "latest",
"@lerna-lite/publish": "latest",
"browser-sync": "latest",
"c8": "latest",
"concurrently": "latest",
"cssnano": "latest",
"cssnano-preset-advanced": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"github-generate-release": "latest",
"gulp": "4",
"gulp-concat": "latest",
"gulp-postcss": "latest",
"gulp-uglify": "latest",
"nano-staged": "latest",
"npm-check-updates": "latest",
"postcss": "latest",
"postcss-focus": "latest",
"simple-git-hooks": "latest",
"standard": "latest"
},
"engines": {
"node": ">= 24"
},
"scripts": {
"build": "gulp build",
"clean": "pnpm --recursive exec -- rm -rf node_modules",
"contributors": "pnpm run contributors:add && pnpm run contributors:commit",
"contributors:add": "pnpm --recursive --parallel exec -- finepack",
"contributors:commit": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"dev": "concurrently \"gulp\" \"npm run dev:server\"",
"dev:server": "browser-sync start --server --files \"index.html, README.md, static/**/*.(css|js)\"",
"lint": "standard",
"postrelease": "github-generate-release",
"pretest": "pnpm run lint",
"release": "lerna publish --yes --sort --conventional-commits -m \"chore(release): %s\"",
"test": "c8 pnpm --recursive --sequential test",
"update": "pnpm --recursive --parallel exec ncu -u"
},
"private": true,
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"nano-staged": {
"*.js": [
"standard --fix"
],
"package.json": [
"finepack"
]
},
"pnpm": {
"neverBuiltDependencies": []
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
},
"standard": {
"ignore": [
"packages/screenshot/src/pretty/prism.js"
]
}
}