-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 942 Bytes
/
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
{
"name": "passport-coding-oauth",
"version": "0.1.1",
"description": "coding.net authentication strategy for Passport.",
"keywords": [
"passport",
"coding",
"coding.net",
"auth"
],
"repository": {
"type": "git",
"url": "https://github.com/chrisyer/passport-coding-oauth.git"
},
"bugs": {
"url": "https://github.com/chrisyer/passport-coding-oauth/issues"
},
"author": {
"name": "chrisyer",
"email": "[email protected]"
},
"scripts": {
"test":"node_modules/.bin/mocha",
"cover": "istanbul cover node_modules/.bin/_mocha ",
"coveralls":"npm run cover -- --report lcovonly && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"license": "MIT",
"main": "./lib",
"dependencies": {
"passport-oauth2": "^1.x.x"
},
"devDependencies": {
"mocha":"^4.0.1",
"mocha-lcov-reporter":"^1.3.0",
"coveralls":"^3.0.0",
"istanbul": "0.4.5"
}
}