-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
106 lines (106 loc) · 2.6 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "newsroom-cli",
"description": "A modern CLI to get your favorite news.",
"license": "MIT",
"author": "kpman",
"homepage": "https://github.com/kpman/newsroom/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kpman/newsroom.git"
},
"bugs": {
"url": "https://github.com/kpman/newsroom/issues"
},
"version": "0.1.11",
"main": "bin/cli.js",
"bin": {
"newsroom": "bin/cli.js",
"nr": "bin/cli.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"build": "npm run clean && tsc && cp src/sources.opml lib/sources.opml",
"clean": "rimraf dist packed",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "npm run lint -- --fix",
"pkg": "npm run build && pkg . --out-path packed",
"prepublishOnly": "npm run lint && npm run build",
"test": "npm run lint && jest",
"testonly": "jest",
"testonly:cov": "jest --coverage --runInBand --forceExit",
"testonly:watch": "jest --watch",
"version": "rimraf package-lock.json && git add -A"
},
"dependencies": {
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"feed-read-parser": "^0.0.6",
"figures": "^2.0.0",
"fuzzy": "^0.1.3",
"inquirer": "^6.2.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"invariant": "^2.2.4",
"minimist": "^1.2.0",
"node-opml-parser": "^1.0.0",
"open": "^0.0.5",
"ora": "^3.0.0",
"sane": "^2.5.1",
"thenify": "^3.3.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^1.1.2",
"jest": "^29.5.0",
"lint-staged": "^8.0.4",
"pkg": "^5.8.1",
"prettier": "^2.8.7",
"prettier-package-json": "^2.0.1",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"keywords": [
"newsletter"
],
"engines": {
"node": ">=4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
},
"pkg": {
"scripts": "lib/**/*.js",
"assets": "lib/sources.opml",
"targets": [
"node14-macos",
"node14-linux",
"node14-win"
]
}
}