-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1014 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1014 Bytes
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
{
"name": "books-com-tw-crawler",
"version": "1.2.4",
"description": "books.com.tw crawler",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"start": "npm run demo:ts",
"build": "tsc",
"demo:js": "node ./lib/demo.js",
"demo:ts": "ts-node ./src/demo.ts",
"lint": "biome lint .",
"lint:fix": "biome check --write .",
"test": "jest --coverage --silent"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/FlowerEatsFish/books-com-tw-crawler.git"
},
"author": "Chuyu Hua",
"license": "MIT",
"private": false,
"keywords": [
"web-crawler"
],
"dependencies": {
"axios": "^1.8.4"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@biomejs/biome": "^1.8.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.14",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}