-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "chch",
"version": "2.8.0",
"author": "vipzero",
"repository": "vipzero/chch",
"dependencies": {
"2ch-trip": "^1.0.1",
"axios": "^0.28.0",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"encoding-japanese": "^1.0.30",
"holiday-jp": "^1.0.0",
"lodash": "^4.17.20",
"meow": "^8.0.0"
},
"devDependencies": {
"@types/cheerio": "0.22.31",
"@types/jest": "28.1.1",
"@types/lodash": "4.14.182",
"@types/node": "16.11.39",
"axios-mock-adapter": "1.22.0",
"eslint": "7.32.0",
"eslint-config-nzap": "4.4.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"ts-jest": "26.5.6",
"ts-node": "9.1.1",
"typescript": "4.9.5"
},
"lint-staged": {
"scripts/**/*.ts": [
"eslint --fix",
"git add"
]
},
"keywords": [
"5ch",
"2ch",
"cli"
],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"bin": "dist/cli.js",
"scripts": {
"cli": "ts-node src/cli.ts",
"hosyu": "ts-node src/hosyu.ts",
"build": "tsc --build tsconfig.build.json",
"deploy": "yarn build && yarn publish",
"lint": "eslint --ext .ts src",
"test:mock": "curl http://hebi.5ch.net/test/read.cgi/news4vip/1572163600 > src/__test__/mock/thread.html",
"test": "jest"
}
}