generated from wabarc/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "@wabarc/archiver",
"version": "0.3.1",
"description": "Archiving webpages from the Telegram channel",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
"lint": "eslint ./ --ext .ts",
"test": "jest --no-cache --testTimeout 300000",
"clean": "rm -rf ./dist",
"prepub": "npm run clean; npm run format; npm run lint; npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wabarc/archiver.git"
},
"keywords": [
"archive",
"wayback",
"telegram"
],
"author": "Wayback Archiver",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/wabarc/archiver/issues"
},
"homepage": "https://github.com/wabarc/archiver#readme",
"dependencies": {
"@wabarc/cairn": "^2.1.2",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"html-minifier": "^4.0.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.23",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3",
"typescript-formatter": "^7.2.2"
},
"engines": {
"node": ">= 12"
}
}