-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
61 lines (61 loc) · 1.36 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
{
"name": "twitter-v2",
"version": "1.1.0",
"description": "An asynchronous client library for the Twitter REST and Streaming V2 API's.",
"main": "build/twitter.js",
"types": "build/twitter.d.ts",
"scripts": {
"build": "tsc --project .",
"lint": "prettier . --check",
"lint:fix": "prettier . --write",
"test": "ts-mocha --ui bdd --recursive"
},
"pre-commit": {
"run": "lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HunterLarco/twitter-v2.git"
},
"keywords": [
"twitter",
"v2",
"node",
"api",
"stream",
"streaming",
"rest",
"oauth",
"twit"
],
"author": "Hunter Larco",
"license": "MIT",
"bugs": {
"url": "https://github.com/HunterLarco/twitter-v2/issues"
},
"engines": {
"node": ">=0.10.0"
},
"homepage": "https://github.com/HunterLarco/twitter-v2#readme",
"devDependencies": {
"@tsconfig/node10": "1.0.7",
"@types/expect": "24.3.0",
"@types/mocha": "8.2.2",
"@types/node": "14.14.37",
"chai": "4.3.0",
"chalk": "4.1.0",
"enquirer": "2.3.6",
"minimist": "1.2.5",
"mocha": "8.3.0",
"pre-commit": "1.2.2",
"prettier": "2.1.1",
"ts-mocha": "8.0.0",
"typescript": "4.2.4"
},
"dependencies": {
"abort-controller": "3.0.0",
"node-fetch": "2.6.1",
"oauth-1.0a": "2.2.6",
"split": "1.0.1"
}
}