forked from fabiospampinato/rssa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "rssa",
"version": "1.1.1",
"description": "RSS-Anything, get updates about anything you can reach with an url. Like RSS, but for anything.",
"bin": "out/src/index.js",
"main": "out/src/index.js",
"scripts": {
"prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"clean:cache": "rimraf .cache",
"clean:reports": "rimraf reports",
"clean:history": "rimraf history.json",
"clean": "npm run clean:cache && npm run clean:reports && npm run clean:history"
},
"bugs": {
"url": "https://github.com/fabiospampinato/rssa/issues"
},
"license": "MIT",
"author": {
"name": "Fabio Spampinato",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/rssa.git"
},
"keywords": [
"rssa",
"rss",
"monitor",
"updates",
"reports"
],
"dependencies": {
"@types/lodash": "^4.14.69",
"absolute": "0.0.1",
"chalk": "^2.0.1",
"cheerio": "^1.0.0-rc.2",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"node-cmd": "^3.0.0",
"open": "0.0.5",
"pify": "^3.0.0",
"request": "^2.81.0",
"require-absolute": "^1.0.1",
"rimraf": "^2.6.1",
"sha1": "^1.1.1",
"yargs": "^8.0.2"
}
}