-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.38 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": "douban-spider-v",
"version": "0.0.7",
"description": "豆瓣爬虫",
"homepage": "https://github.com/justJokee/douban-spider#readme",
"repository": {
"type": "git",
"url": "https://github.com/justJokee/douban-spider.git"
},
"main": "lib/index.js",
"scripts": {
"prepare": "husky install",
"build": "rollup -c"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --fix --ext .js,.ts"
]
},
"keywords": [
"豆瓣爬虫",
"豆瓣",
"豆瓣电影",
"douban",
"douban-spider",
"douban spider"
],
"files": [
"lib",
"src",
"index.d.ts",
"README.md",
"rollup.config.js",
"tsconfig.json"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"cheerio": "^1.0.0-rc.10",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"rollup": "^2.67.1",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/cheerio": "^0.22.31"
}
}