-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
59 lines (59 loc) · 1.98 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": "twitter-api-v2",
"version": "1.18.2",
"description": "Strongly typed, full-featured, light, versatile yet powerful Twitter API v1.1 and v2 client for Node.js.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"keywords": [
"twitter",
"api",
"typed",
"types",
"v2",
"v1.1"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:esm": "tsc -b tsconfig.esm.json",
"build-doc": "typedoc src/index.ts --out tsdocs",
"lint": "eslint --ext \".ts\" --ignore-path .gitignore .",
"mocha": "mocha -r ts-node/register --timeout 10000",
"test": "npm run mocha 'test/**/*.test.ts'",
"test-tweet": "npm run mocha 'test/tweet.*.test.ts'",
"test-user": "npm run mocha 'test/user.*.test.ts'",
"test-stream": "npm run mocha test/stream.test.ts",
"test-media": "npm run mocha test/media-upload.test.ts",
"test-auth": "npm run mocha test/auth.test.ts",
"test-dm": "npm run mocha test/dm.*.test.ts",
"test-list": "npm run mocha test/list.*.test.ts",
"test-space": "npm run mocha test/space.v2.test.ts",
"test-account": "npm run mocha test/account.*.test.ts",
"test-plugin": "npm run mocha test/plugin.test.ts",
"prepublish": "npm run build"
},
"repository": "github:plhery/node-twitter-api-v2",
"author": "Paul-Louis Hery <paullouis.hery+twitterapi@gmail.com> (https://x.com/plhery)",
"license": "Apache-2.0",
"files": [
"dist"
],
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"chai": "^4.3.4",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typescript": "^4.2.4"
},
"bugs": {
"url": "https://github.com/plhery/node-twitter-api/issues"
}
}