-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 1.92 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
{
"name": "crawlee-pino",
"version": "0.2.1",
"description": "🌲 use Pino to log within Crawlee",
"type": "module",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/esm/index.js"
}
},
"types": "./lib/types/index.d.js",
"files": [
"lib"
],
"scripts": {
"lint": "prettier-eslint --write $PWD/\"src/**/*.[jt]s?(x)\" ",
"clean": "rimraf ./lib",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.esm.json",
"test": "ava",
"release": "np",
"prepare": "husky install"
},
"engines": {
"node": ">= 18"
},
"repository": {
"url": "imyelo/crawlee-pino",
"type": "git"
},
"author": "yelo <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/imyelo/crawlee-pino/issues"
},
"homepage": "https://github.com/imyelo/crawlee-pino#readme",
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
],
"files": [
"test/**/*",
"!test/helpers/**/*"
]
},
"prettier": "@yelo/prettier-config",
"lint-staged": {
"*.{md,js,ts,json}": [
"prettier-eslint --write"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@types/sinon": "^10.0.13",
"@yelo/eslint-config": "^0.2.0",
"@yelo/prettier-config": "^0.1.0",
"@yelo/tsconfig": "^0.3.0",
"ava": "^5.2.0",
"crawlee": "^3.3.0",
"eslint": "^8.38.0",
"get-port": "^6.1.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"micro": "^10.0.1",
"np": "^7.6.3",
"pino": "^9.3.2",
"pino-abstract-transport": "^1.0.0",
"prettier": "^2.8.7",
"prettier-eslint-cli": "^6.0.1",
"rimraf": "^4.4.0",
"sinon": "^15.0.3",
"ts-node": "^10.9.1",
"tsimp": "^2.0.11",
"typescript": "^5.0.2"
},
"peerDependencies": {
"crawlee": "^3",
"pino": "^8 || ^9"
}
}