-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
160 lines (160 loc) · 4.14 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
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
{
"name": "browserless",
"description": "the headless Chrome/Chromium performance driver for Node.js",
"homepage": "https://browserless.js.org",
"version": "",
"author": {
"email": "[email protected]",
"name": "microlink.io",
"url": "https://microlink.io"
},
"contributors": [
{
"name": "Kiko Beats",
"email": "[email protected]"
},
{
"name": "Rémi",
"email": "[email protected]"
},
{
"name": "Chris Talkington",
"email": "[email protected]"
},
{
"name": "Edmond Mensah",
"email": "[email protected]"
},
{
"name": "Aditya Wankhede",
"email": "[email protected]"
},
{
"name": "Dr. Thunder Cat Pea",
"email": "[email protected]"
},
{
"name": "Luc",
"email": "[email protected]"
},
{
"name": "Markus Staab",
"email": "[email protected]"
},
{
"name": "Marcel Cruz",
"email": "[email protected]"
},
{
"name": "Rémi Berson",
"email": "[email protected]"
},
{
"name": "pierresaid",
"email": "[email protected]"
},
{
"name": "Timkor",
"email": "[email protected]"
},
{
"name": "Tycho Bokdam",
"email": "[email protected]"
}
],
"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",
"@ksmithut/prettier-standard": "latest",
"@lerna-lite/cli": "latest",
"@lerna-lite/exec": "latest",
"@lerna-lite/publish": "latest",
"browser-sync": "latest",
"c8": "latest",
"concurrently": "latest",
"cssnano": "latest",
"cssnano-preset-advanced": "latest",
"finepack": "latest",
"git-authors-cli": "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": ">= 12"
},
"scripts": {
"build": "gulp build",
"clean": "pnpm -r 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",
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
"dev": "concurrently \"gulp\" \"npm run dev:server\"",
"dev:server": "browser-sync start --server --files \"index.html, README.md, static/**/*.(css|js)\"",
"lint": "standard",
"postinstall": "node node_modules/puppeteer/install.mjs",
"prerelease": "pnpm run update:check",
"pretest": "pnpm run lint",
"release": "lerna publish --yes --sort --conventional-commits -m \"chore(release): %s\" --create-release github",
"test": "c8 lerna exec pnpm run test",
"update": "pnpm --recursive --parallel exec ncu -u",
"update:check": "pnpm --recursive --parallel exec ncu -errorLevel 2"
},
"private": true,
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"nano-staged": {
"*.js": [
"prettier-standard",
"standard --fix"
],
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
},
"standard": {
"ignore": [
"packages/screenshot/src/pretty/prism.js"
]
}
}