forked from draftbit/twitter-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "twitter-lite",
"version": "0.4.0",
"description":
"A tiny, full-featured client / server library for the Twitter API",
"source": ["twitter.js", "stream.js"],
"main": "dist/twitter.js",
"module": "dist/twitter.m.js",
"repository": "preposterous/twitter-lite",
"homepage": "https://github.com/preposterous/twitter-lite",
"author": "Peter Piekarczyk <[email protected]>",
"license": "MIT",
"files": ["twitter.js", "stream.js", "dist"],
"keywords": [
"twitter",
"node-twitter",
"twitter oauth",
"twitter rest",
"rest",
"api",
"streams",
"twitter api"
],
"dependencies": {
"cross-fetch": "^1.1.1",
"oauth-1.0a": "^2.2.4"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.3.0",
"lint-staged": "^7.0.0",
"microbundle": "^0.4.3",
"prettier": "^1.11.1"
},
"scripts": {
"prepare": "microbundle",
"test": "jest",
"release":
"npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
}
}