-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 KB
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": "passport-twitter-token",
"version": "1.3.0",
"description": "Twitter token authentication strategy for Passport",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile",
"test": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/drudge/passport-twitter-token.git"
},
"keywords": [
"passport",
"twitter",
"auth",
"authn",
"authentication",
"identity"
],
"author": {
"name": "Nicholas Penree",
"email": "nick@penree.com",
"url": "http://penree.com"
},
"contributors": [
{
"name": "Eugene Obrezkov",
"email": "ghaiklor@gmail.com",
"url": "http://ghaiklor.com"
}
],
"license": "MIT",
"bugs": {
"url": "http://github.com/drudge/passport-twitter-token/issues"
},
"dependencies": {
"passport-oauth": "1.0.0"
},
"devDependencies": {
"babel": "5.8.23",
"chai": "3.3.0",
"chai-passport-strategy": "0.2.0",
"istanbul": "0.3.21",
"mocha": "2.3.3",
"sinon": "1.17.1"
}
}