-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "passport-bitbucket-token",
"version": "1.0.0",
"description": "Passport strategy for authenticating with Bitbucket access tokens using the OAuth 2.0 API.",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "cat coverage/lcov.info | coveralls",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha"
},
"keywords": [
"passport",
"bitbucket",
"auth",
"authn",
"authentication",
"identity"
],
"author": "Ivan Vasiljevic",
"license": "MIT",
"dependencies": {
"passport-oauth": "1.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"chai-passport-strategy": "^1.0.0",
"coveralls": "^2.13.0",
"isparta": "^4.0.0",
"mocha": "^3.2.0",
"sinon": "^2.1.0"
},
"bugs": {
"url": "https://github.com/GenFirst/passport-bitbucket-token/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/GenFirst/passport-bitbucket-token.git"
}
}