forked from desmondmorris/node-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 727 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 727 Bytes
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
{
"name": "twitter",
"version": "1.7.1",
"description": "Twitter API client library for node.js",
"license": "MIT",
"keywords": [
"twitter",
"streaming",
"oauth"
],
"homepage": "https://github.com/desmondmorris/node-twitter",
"author": "Desmond Morris <hi@desmondmorris.com>",
"repository": {
"type": "git",
"url": "https://github.com/desmondmorris/node-twitter"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "./node_modules/.bin/eslint test/*.js lib/*.js"
},
"dependencies": {
"deep-extend": "^0.5.0",
"request": "^2.72.0"
},
"devDependencies": {
"eslint": "^3.12.0",
"mocha": "^3.2.0",
"nock": "^9.0.2"
},
"main": "./lib/twitter"
}