This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "twitter-api-client",
"version": "1.6.1",
"description": "Node.js / JavaScript client for Twitter API",
"main": "dist/index.js",
"scripts": {
"generate": "ts-node ./src/index.ts",
"build": "tsc",
"test": "jest"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FeedHive/twitter-api-client.git"
},
"keywords": [
"node.js",
"javascript",
"twitter",
"api"
],
"author": "FeedHive",
"license": "MIT",
"bugs": {
"url": "https://github.com/FeedHive/twitter-api-client/issues"
},
"homepage": "https://github.com/FeedHive/twitter-api-client#readme",
"dependencies": {
"oauth": "^0.9.15",
"object-sizeof": "^1.6.1"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.6",
"@sinonjs/fake-timers": "^6.0.1",
"@types/jest": "^26.0.5",
"@types/js-yaml": "^3.12.5",
"@types/lodash.capitalize": "^4.2.6",
"@types/mock-fs": "^4.10.0",
"@types/node": "^13.11.1",
"@types/oauth": "^0.9.1",
"@types/rimraf": "^3.0.0",
"@types/sinonjs__fake-timers": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^26.1.0",
"js-yaml": "^3.14.0",
"json-to-ts": "^1.7.0",
"lodash.capitalize": "^4.2.1",
"mock-fs": "^4.13.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"ts-node": "^9.0.0",
"typescript": "^3.8.3"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"collectCoverage": true
}
}