-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
68 lines (68 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
60
61
62
63
64
65
66
67
68
{
"name": "twitter-lite",
"version": "1.1.0",
"description": "Tiny, full-featured client/server REST/stream library for the Twitter API",
"source": "twitter.js",
"main": "dist/twitter.js",
"module": "dist/twitter.m.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"repository": "draftbit/twitter-lite",
"homepage": "https://github.com/draftbit/twitter-lite",
"author": "Peter Piekarczyk <[email protected]>",
"contributors": [
"Dan Dascalescu (https://github.com/dandv)"
],
"license": "MIT",
"keywords": [
"twitter",
"rest",
"api",
"twitter api",
"node-twitter",
"twitter oauth",
"twitter rest",
"twitter stream"
],
"dependencies": {
"cross-fetch": "^3.0.0",
"oauth-1.0a": "^2.2.4"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^14.17.9",
"bundlesize": "^0.18.0",
"dotenv": "^10.0.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"flow-bin": "^0.123.0",
"husky": "^7.0.1",
"jest": "^25.5.0",
"microbundle": "^0.13.3",
"typescript": "^4.3.5"
},
"scripts": {
"lint": "eslint . && tsc index.d.ts",
"fix": "eslint --fix .",
"build": "microbundle {stream,twitter}.js && bundlesize",
"test": "jest --detectOpenHandles",
"release": "npm run -s build && npm run lint && npm test && git tag $npm_package_version && git push && git push --tags && npm publish",
"prepare": "husky install"
},
"jest": {
"testEnvironment": "node"
},
"bundlesize": [
{
"path": "dist/**.js",
"maxSize": "3 kB"
},
{
"path": "index.d.ts",
"maxSize": "3 kB"
}
]
}