Much faster installation which is very important for CI. We'll see if it proves difficult for deps management.
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"name": "xo-server-auth-github",
|
|
"version": "0.2.1",
|
|
"license": "AGPL-3.0",
|
|
"description": "GitHub authentication plugin for XO-Server",
|
|
"keywords": [
|
|
"xo-server",
|
|
"xo-server",
|
|
"authentication",
|
|
"github"
|
|
],
|
|
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/packages/xo-server-auth-github",
|
|
"bugs": "https://github.com/vatesfr/xo-web/issues",
|
|
"repository": {
|
|
"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": ">=4"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.11.6",
|
|
"passport-github": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.24.1",
|
|
"babel-eslint": "^8.0.1",
|
|
"babel-plugin-transform-runtime": "^6.15.0",
|
|
"babel-preset-latest": "^6.24.1",
|
|
"babel-preset-stage-0": "^6.24.1",
|
|
"dependency-check": "^2.9.1",
|
|
"standard": "^10.0.2"
|
|
},
|
|
"scripts": {
|
|
"build": "NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
|
|
"depcheck": "dependency-check ./package.json",
|
|
"dev": "NODE_DEV=development babel --watch --source-maps --out-dir=dist/ src/",
|
|
"lint": "standard",
|
|
"posttest": "yarn run lint && yarn run depcheck",
|
|
"prepublish": "yarn run build"
|
|
},
|
|
"babel": {
|
|
"plugins": [
|
|
"transform-runtime"
|
|
],
|
|
"presets": [
|
|
"latest",
|
|
"stage-0"
|
|
]
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"dist"
|
|
],
|
|
"parser": "babel-eslint"
|
|
}
|
|
}
|