55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "xo-server-auth-google",
|
|
"version": "0.2.1",
|
|
"license": "AGPL-3.0",
|
|
"description": "Google authentication plugin for XO-Server",
|
|
"keywords": [
|
|
"authentication",
|
|
"google",
|
|
"orchestra",
|
|
"plugin",
|
|
"xen",
|
|
"xen-orchestra",
|
|
"xo-server"
|
|
],
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-server-auth-google",
|
|
"bugs": "https://github.com/vatesfr/xen-orchestra/issues",
|
|
"repository": {
|
|
"directory": "packages/xo-server-auth-google",
|
|
"type": "git",
|
|
"url": "https://github.com/vatesfr/xen-orchestra.git"
|
|
},
|
|
"author": {
|
|
"name": "Julien Fontanet",
|
|
"email": "julien.fontanet@isonoe.net"
|
|
},
|
|
"preferGlobal": false,
|
|
"main": "dist/",
|
|
"bin": {},
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"dependencies": {
|
|
"passport-google-oauth20": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"babel-plugin-lodash": "^3.3.2",
|
|
"cross-env": "^6.0.3",
|
|
"rimraf": "^3.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
|
|
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
|
|
"prebuild": "rimraf dist/",
|
|
"predev": "yarn run prebuild",
|
|
"prepublishOnly": "yarn run build"
|
|
},
|
|
"private": true
|
|
}
|