-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "downstream",
"version": "0.1.5",
"description": "A multi-platform and real-time social media aggregation framework.",
"author": "Max Karpawich <[email protected]>",
"license": "GPL-3.0-or-later",
"repository": "TID-Lab/downstream",
"homepage": "https://github.com/TID-Lab/downstream",
"keywords": [
"social",
"media",
"social-media",
"platform",
"typescript",
"aggregator",
"aggregate",
"facebook",
"twitter",
"instagram",
"framework"
],
"devDependencies": {
"@tsconfig/node10": "^1.0.7",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"ts-mocha": "^8.0.0",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.1",
"koa-compose": "^4.1.0",
"twitter-v2": "^1.1.0"
},
"engines": {
"node": ">= 12.9.0"
},
"scripts": {
"build": "rimraf build/ && tsc --project .",
"test": "ts-mocha --recursive test/*",
"prepare": "npm run build",
"preversion": "git checkout master && git merge develop",
"postversion": "git push && git push --tags && git checkout develop && git rebase master && git push origin HEAD"
},
"main": "build/index.js",
"types": "build/index.d.ts"
}