This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
60 lines (60 loc) · 1.45 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
{
"name": "feedly",
"version": "0.1.6",
"description": "feedly.com API",
"main": "lib/feedly.js",
"scripts": {
"clean": "rm -rf coverage doc",
"lint": "standard lib/*.js test/*.js",
"doc": "jsdoc -c .jsdoc.conf",
"coverage": "nyc npm test",
"postcoverage": "nyc report -r html",
"test": "ava test/*.js",
"watch": "watch 'npm run coverage' src/",
"release": "npm version patch && git push --follow-tags && npm publish",
"live": "live-server --port=4001 --ignorePattern='(js|css|png)$' coverage",
"predev": "node tools/copyif.js",
"dev": "npm-run-all -p --silent watch live"
},
"repository": {
"type": "git",
"url": "https://github.com/hildjj/node-feedly.git"
},
"keywords": [
"API",
"atom",
"rss",
"feedly",
"news"
],
"author": {
"name": "Joe Hildebrand",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/hildjj/node-feedly/issues"
},
"homepage": "https://github.com/hildjj/node-feedly",
"devDependencies": {
"ava": "latest",
"jsdoc": "latest",
"live-server": "latest",
"minami": "latest",
"npm-run-all": "latest",
"nyc": "latest",
"standard": "latest",
"taffydb": "2.7.3",
"watch": "latest"
},
"dependencies": {
"nofilter": "5.0.0",
"opn": "^6.0.0",
"request": "^2.88",
"untildify": "^5.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.8"
}
}