-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·53 lines (53 loc) · 1.32 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
51
52
53
{
"name": "passport-teamsnap",
"version": "1.1.1",
"description": "Teamsnap OAuth 2.0 authentication strategy for Passport.",
"keywords": [
"passport",
"teamsnap",
"oauth2",
"auth",
"authentication",
"identity"
],
"repository": {
"type": "git",
"url": "http://github.com/7elephants/passport-teamsnap.git"
},
"bugs": {
"url": "http://github.com/7elephants/passport-teamsnap/issues"
},
"author": {
"name": "Andrew Steiger",
"email": "[email protected]"
},
"license":"MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"collection-json":"7elephants/collection-json.js",
"passport-oauth2": "^1.4.0",
"pkginfo": "^0.2.3",
"debug": "~2.2.0"
},
"devDependencies": {
"make-node": "0.3.x",
"mocha": "2.x.x",
"chai": "2.x.x",
"chai-passport-strategy": "1.x.x",
"mochawesome":"2.3.x",
"mochawesome-report-generator":"2.2.x"
},
"scripts": {
"test-local": "node_modules/.bin/mocha --reporter mochawesome --require test/bootstrap/node test/*.test.js test/**/*.test.js",
"test": "node_modules/.bin/mocha --require test/bootstrap/node test/package.test.js test/*.test.js test/**/*.test.js"
},
"engines": {
"node": ">= 0.4.0"
}
}