-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.97 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
{
"name": "watch-rss",
"version": "1.0.0",
"description": "Aggregate your watched GitHub Repository's releases as RSS feeds.",
"keywords": [
"github",
"watch",
"rss",
"feed"
],
"homepage": "https://github.com/azu/watch-rss",
"bugs": {
"url": "https://github.com/azu/watch-rss/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/watch-rss.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/watch-rss.js",
"module": "module/watch-rss.js",
"types": "lib/watch-rss.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module"
],
"scripts": {
"add-subscription-to-inoreader": "ts-node src/add-subscription-to-inoreader.ts",
"getAccessToken": "ts-node src/getAccessToken.ts",
"watch-rss": "ts-node src/watch-rss.ts",
"build": "tsc -p . && tsc -p ./tsconfig.module.json",
"clean": "rimraf lib/ module/",
"prepare": "git config --local core.hooksPath .githooks",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.19",
"@types/node-fetch": "^2.5.7",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"ts-node-test-register": "^9.0.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@octokit/rest": "^18.0.12",
"@types/simple-oauth2": "^4.1.0",
"atob": "^2.1.2",
"node-fetch": "^2.6.1",
"open": "^7.3.0",
"p-all": "^3.0.0",
"simple-oauth2": "^4.2.0",
"tweetsodium": "^0.0.5"
}
}