-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.43 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.43 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "article-archiver",
"version": "1.5.0",
"description": "Node tool to scrape and transform articles for local reading",
"main": "lib/index.js",
"bin": {
"article-archiver": "bin/article-archiver"
},
"files": [
"cypress/**/*",
"lib/**/*"
],
"scripts": {
"prebuild": "node -p \"'export const version = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"prepack": "npm run build",
"build": "tsc -p tsconfig.prod.json && npm run tsc-paths",
"tsc-paths": "tscpaths -p tsconfig.prod.json -s ./src -o ./lib",
"watch": "tsc-watch -p tsconfig.prod.json --onSuccess \"npm run tsc-paths\"",
"test": "jest",
"format": "eslint src/**/*.ts --fix",
"lint": "eslint src/**/*.ts",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisodicho/article-archiver.git"
},
"keywords": [
"node",
"website",
"articles",
"blogs",
"posts",
"scraper",
"cypress",
"mozilla",
"readability",
"turndown",
"markdown",
"offline"
],
"author": "Chris Odicho <chris.odicho@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chrisodicho/article-archiver/issues"
},
"homepage": "https://github.com/chrisodicho/article-archiver#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"@types/mozilla-readability": "^0.2.1",
"@types/node": "^16.11.1",
"@types/rimraf": "^3.0.2",
"chrome-ext-downloader": "^1.0.4",
"cypress": "^8.6.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.6",
"tsc-watch": "^4.5.0",
"tsconfig-paths": "^3.11.0",
"tscpaths": "^0.0.9",
"typescript": "^4.4.4"
},
"dependencies": {
"@mozilla/readability": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"commander": "^8.2.0",
"eslint": "^8.0.1",
"esm": "^3.2.25",
"isomorphic-dompurify": "^0.15.0",
"log4js": "^6.3.0",
"rimraf": "^3.0.2",
"util": "^0.12.4"
},
"lint-staged": {
"*.--fix": "prettier --write"
}
}