package.json
1.03 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-strategy",
"version": "1.0.0",
"description": "An abstract class implementing Passport's strategy API.",
"keywords": [
"passport",
"strategy"
],
"repository": {
"type": "git",
"url": "git://github.com/jaredhanson/passport-strategy.git"
},
"bugs": {
"url": "http://github.com/jaredhanson/passport-strategy/issues"
},
"author": {
"name": "Jared Hanson",
"email": "jaredhanson@gmail.com",
"url": "http://www.jaredhanson.net/"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x"
},
"engines": {
"node": ">= 0.4.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
},
"testling": {
"browsers": [
"chrome/latest"
],
"harness" : "mocha",
"files": [
"test/bootstrap/testling.js",
"test/*.test.js"
]
}
}