-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.41 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
54
55
{
"private": true,
"name": "xo-server-auth-trustedheader",
"version": "0.2.0",
"license": "AGPL-3.0-or-later",
"description": "Trusted headers authentication plugin for XO-Server",
"keywords": [
"authentication",
"orchestra",
"plugin",
"http",
"headers",
"xen",
"xen-orchestra",
"xo-server"
],
"homepage": "https://github.com/geoffhouse/xo-server-auth-trustedheader/tree/master",
"bugs": "https://github.com/geoffhouse/xo-server-auth-trustedheader/issues",
"repository": {
"type": "git",
"url": "https://github.com/geoffhouse/xo-server-auth-trustedheader.git"
},
"author": {
"name": "Geoff House",
"email": "geoff@housesathome.co.uk"
},
"preferGlobal": false,
"main": "dist/",
"bin": {},
"files": [
"dist/"
],
"engines": {
"node": ">=6"
},
"dependencies": {
"passport-trusted-header": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^6.0.3",
"rimraf": "^3.0.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
"clean": "rimraf dist/",
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
"prebuild": "yarn run clean",
"predev": "yarn run prebuild",
"prepublishOnly": "yarn run build"
}
}