-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "twitter-api-sdk",
"version": "1.2.1",
"description": "A TypeScript SDK for the Twitter API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"prebuild": "yarn clean",
"generate": "ts-node scripts/generate.ts",
"prepublishOnly": "yarn test",
"build:watch": "tsc --watch",
"test": "jest",
"clean": "rm -rf dist"
},
"dependencies": {
"abort-controller": "^3.0.0",
"node-fetch": "^2.6.1"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@types/jest": "^27.4.1",
"@types/node-fetch": "^2.6.1",
"jest": "^27.5.1",
"nock": "^13.2.4",
"openapi-typescript": "^5.4.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.8.2",
"typescript": "^4.4.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twitterdev/twitter-api-typescript-sdk.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/twitterdev/twitter-api-typescript-sdk/issues"
},
"homepage": "https://github.com/twitterdev/twitter-api-typescript-sdk#readme"
}