This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "puppet-scraper",
"description": "Scraping using Puppeteer the sane way 🤹🏻♂️",
"version": "0.2.0",
"repository": "https://github.com/grikomsn/puppet-scraper.git",
"author": "Griko Nibras <[email protected]>",
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"module": "dist/puppet-scraper.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepare": "tsdx build",
"build": "tsdx build",
"lint": "tsdx lint --fix src test types",
"test": "tsdx test",
"watch": "tsdx watch",
"format": "yarn format:examples && yarn format:index",
"format:examples": "prettier --write \"examples/**/*.js\"",
"format:index": "prettier --write \"*.{js,json,md}\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"promise-retry": "^1.1.1",
"puppeteer-core": "^3.0.3"
},
"peerDependencies": {
"puppeteer": "^3.0.3"
},
"devDependencies": {
"@types/promise-retry": "^1.1.3",
"@types/puppeteer": "^2.0.1",
"@types/puppeteer-core": "^2.0.0",
"all-contributors-cli": "^6.14.2",
"husky": "^4.2.5",
"puppeteer": "^3.0.3",
"tsdx": "^0.13.2",
"tslib": "^1.11.2",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn lint && yarn contributors:generate"
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"license": "MIT"
}