-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "passport-geocaching",
"version": "0.2.2",
"description": "Geocaching authentication strategy for Passport.",
"keywords": [
"passport",
"geocaching",
"auth",
"authn",
"authentication",
"identity"
],
"author": {
"name": "Ludovic Valente",
"email": "[email protected]",
"url": "http://www.geoking.fr/"
},
"repository": {
"type": "git",
"url": "git://github.com/ludoo0d0a/passport-geocaching.git"
},
"bugs": {
"url": "http://github.com/ludoo0d0a/passport-geocaching/issues"
},
"license": "ISC",
"main": "./dist/index",
"scripts": {
"build": "babel lib -d dist",
"prepublish": "npm run build",
"test:mocha": "mocha --compilers js:babel-core/register --recursive",
"test": "NODE_PATH=lib node_modules/.bin/vows test/*-test.js --spec"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"passport-oauth": "^1.0.0",
"passport-oauth2": "^1.5.0",
"pkginfo": "^0.4.1",
"vows": "^0.8.2"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/node": "^7.5.5",
"expect.js": "~0.3.1",
"mocha": "^6.2.0",
"sinon": "7.4.1"
},
"engines": {
"node": ">= 0.4.0"
}
}