-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
38 lines (38 loc) · 971 Bytes
/
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
{
"name": "summaly",
"version": "2.7.0",
"description": "Get web page's summary",
"author": "syuilo <[email protected]>",
"license": "MIT",
"repository": "https://github.com/syuilo/summaly.git",
"bugs": "https://github.com/syuilo/summaly/issues",
"main": "./built/index.js",
"types": "./built/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --harmony"
},
"devDependencies": {
"@types/cheerio": "0.22.18",
"@types/debug": "4.1.7",
"@types/html-entities": "1.3.4",
"@types/mocha": "9.0.0",
"@types/node": "16.11.12",
"express": "4.17.1",
"mocha": "9.1.3",
"typescript": "4.5.3"
},
"dependencies": {
"cheerio": "0.22.0",
"debug": "4.3.3",
"escape-regexp": "0.0.1",
"got": "11.8.5",
"html-entities": "2.3.2",
"iconv-lite": "0.6.3",
"jschardet": "3.0.0",
"koa": "2.13.4",
"private-ip": "2.3.3",
"require-all": "3.0.0",
"trace-redirect": "1.0.6"
}
}