-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
96 lines (96 loc) · 2.4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "adonis-ally-azure-ad",
"version": "0.3.1",
"description": "Azure AD ally driver for AdonisJS ally",
"main": "build/providers/index.js",
"files": [
"build/adonis-typings",
"build/standalone.js",
"build/standalone.d.ts",
"build/instructions.md",
"build/src",
"build/providers"
],
"types": "build/providers/index.d.ts",
"scripts": {
"clean": "del-cli build",
"pretest": "npm run lint",
"test": "node japaFile.js",
"compile": "npm run lint && npm run clean && tsc && copyfiles instructions.md build && copyfiles src/types.d.ts build",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"release": "np",
"version": "npm run build"
},
"keywords": [
"adonisjs",
"adonisjs-ally",
"adonis-ally",
"azuread",
"ad",
"azure"
],
"author": "Alexander Wennerstrøm",
"license": "MIT",
"devDependencies": {
"@adonisjs/ally": "^4.1.4",
"@adonisjs/core": "^5.8.5",
"@adonisjs/mrm-preset": "^5.0.3",
"@adonisjs/require-ts": "^2.0.12",
"@adonisjs/sink": "^5.4.0",
"@types/node": "^18.6.4",
"copyfiles": "^2.4.1",
"del-cli": "^5.0.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-adonis": "^2.1.0",
"eslint-plugin-prettier": "^4.2.1",
"japa": "^4.0.0",
"np": "^7.6.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"peerDependencies": {
"@adonisjs/core": "^5.0.0"
},
"adonisjs": {
"instructionsMd": "./build/instructions.md",
"env": {
"AAD_CLIENT_ID": "",
"AAD_CLIENT_SECRET": "",
"AAD_AUTHORIZE_ENDPOINT": "",
"AAD_USER_ENDPOINT": "https://graph.microsoft.com/v1.0/me",
"AAD_TOKEN_ENDPOINT": ""
},
"types": "adonis-ally-azure-ad",
"providers": [
"adonis-ally-azure-ad"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderYW/adonis-ally-azure-ad.git"
},
"bugs": {
"url": "https://github.com/AlexanderYW/adonis-ally-azure-ad/issues"
},
"homepage": "https://github.com/AlexanderYW/adonis-ally-azure-ad#readme",
"publishConfig": {
"access": "public",
"tag": "latest"
}
}