-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.18 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
{
"name": "@hbauer/scrape",
"version": "0.7.9",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./utils.js": {
"types": "./lib/utils/index.d.ts",
"import": "./lib/utils/index.mjs",
"require": "./lib/utils/index.cjs"
},
"./parameters.js": {
"types": "./lib/parameters/index.d.ts",
"import": "./lib/parameters/index.mjs",
"require": "./lib/parameters/index.cjs"
},
"./errors.js": {
"types": "./lib/errors/index.d.ts",
"import": "./lib/errors/index.mjs",
"require": "./lib/errors/index.cjs"
}
},
"module": "./lib/index.mjs",
"main": "./lib/index.cjs",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"author": "Donald Geddes",
"licence": "MIT",
"repository": "https://github.com/handlebauer/scrape.git",
"publishConfig": {
"access": "public"
},
"ava": {
"timeout": "10s",
"require": [
"dotenv/config"
]
},
"prettier": "@hbauer/prettier-config",
"eslintConfig": {
"extends": "@hbauer/eslint-config"
},
"scripts": {
"build": "rollup -c",
"types": "tsc -p jsconfig.json",
"clean": "shx rm -rf ./lib",
"prepublishOnly": "npm run clean && npm run types && npm run build",
"test:up": "(docker compose up -d 2>/dev/null) && sleep 1",
"test": "npm run test:up; ava; npm run test:down",
"test:down": "docker compose down 2>/dev/null",
"test:legacy": "docker-compose up -d && sleep 1 && ava && docker-compose down",
"prepare": "husky install"
},
"devDependencies": {
"@hbauer/eslint-config": "^1.7.3",
"@hbauer/local-file": "^0.4.12",
"@hbauer/prettier-config": "^1.1.1",
"@types/node": "^20.1.5",
"ava": "^5.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"rollup": "^3.21.7",
"shx": "^0.3.4",
"typescript": "^5.0.4"
},
"dependencies": {
"@hbauer/convenience-functions": "^0.35.0",
"@hbauer/local-cache": "^0.3.0",
"@hbauer/timer": "^0.2.0",
"p-retry": "^5.1.2",
"p-throttle": "^5.1.0",
"remeda": "^1.14.0",
"zod": "^3.21.4"
}
}