-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "passport-bnet",
"version": "2.0.0",
"description": "Bnet authentication strategy for Passport.",
"keywords": [
"passport",
"bnet",
"battlenet",
"auth",
"oauth",
"authentication",
"identity"
],
"author": {
"name": "Christopher Giroir",
"email": "cgiroir@blizzard.com",
"url": "https://dev.battle.net/"
},
"repository": {
"type": "git",
"url": "https://github.com/Blizzard/passport-bnet.git"
},
"license": "MIT",
"main": "./src",
"scripts": {
"test": "mocha test/**/*.js",
"lint": "eslint src/",
"lint-fix": "eslint src/ --fix",
"qualimetry": "istanbul cover _mocha --dir qualimetry/cover -- -R spec test/*"
},
"dependencies": {
"passport-oauth2": "^1.4.0"
},
"engines": {
"node": ">= 0.10.30"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^0.4.3",
"mocha": "^5.1.1",
"sinon": "^5.0.7"
}
}