This repository was archived by the owner on Apr 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.38 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.38 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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "gh-projects-content-queue",
"version": "2.0.0",
"description": "A content curation queue based on GitHub projects",
"main": "index.js",
"scripts": {
"test:js": "nyc -r lcov -r text ava",
"test": "npm run lint && npm run test:js",
"lint:js": "eslint index.js lib/ test/",
"lint:docker": "dockerlint Dockerfile",
"lint:ec": "eclint check $(git ls-files)",
"lint": "npm run lint:js && npm run lint:docker && npm run lint:ec",
"coverage": "codecov --disable=gcov",
"start": "node index.js",
"migrate": "node scripts/migrate-v1-v2.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozillach/gh-projects-content-queue.git"
},
"keywords": [
"twitter",
"github",
"projects",
"content",
"curation"
],
"author": "Mozilla Switzerland (https://mozilla.ch)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozillach/gh-projects-content-queue/issues"
},
"homepage": "https://github.com/mozillach/gh-projects-content-queue#readme",
"engines": {
"node": ">=8.0.0"
},
"files": [
"index.js",
"config.default.json",
"lib/*",
"docs/*",
"scripts/*",
"templates/*"
],
"devDependencies": {
"@ava/babel": "^1.0.0",
"ava": "^3.1.0",
"codecov": "^3.7.1",
"dockerlint": "^0.3.9",
"eclint": "^2.8.1",
"eslint": "^6.8.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-array-func": "^3.1.3",
"eslint-plugin-ava": "^10.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"nyc": "^15.0.0",
"sinon": "^8.1.1",
"temp-write": "^4.0.0"
},
"dependencies": {
"@octokit/plugin-retry": "^3.0.1",
"@octokit/plugin-throttling": "^3.2.0",
"@octokit/rest": "^16.40.1",
"ajv": "^6.11.0",
"discourse-sdk": "^1.0.3",
"emittery": "^0.5.1",
"feedparser": "^2.2.9",
"fetch-base64": "^2.1.2",
"form-data": "^3.0.0",
"get-stream": "^5.1.0",
"ical": "^0.6.0",
"megalodon": "^2.1.1",
"mz": "^2.7.0",
"node-fetch": "^2.6.0",
"timezone-support": "^2.0.2",
"tweet.md": "^3.0.0",
"twitter": "^1.7.1",
"twitter-text": "^3.0.1"
},
"ava": {
"babel": {
"compileAsTests": [
"test/**/_*.js"
]
}
},
"nyc": {
"exclude": [
"**/node_modules/",
"test"
],
"reporter": [
"lcov",
"text"
]
}
}