-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.29 KB
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
{
"name": "generator-aspnet-oauth",
"version": "10.0.0",
"description": "Yeoman generator for OAuth Providers for ASP.NET Core",
"license": "MIT",
"type": "module",
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aspnet-contrib/generator-aspnet-oauth.git"
},
"engines": {
"node": ">=22"
},
"author": {
"name": "Jerrie Pelser",
"email": "jerrie@jerriepelser.com",
"url": "https://github.com/jerriep"
},
"scripts": {
"format": "prettier --write **/*.js",
"format-check": "prettier --check **/*.js",
"test": "mocha",
"all": "npm run format && npm test"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"ASP.NET",
"aspnet",
"oauth"
],
"dependencies": {
"cross-fetch": "4.1.0",
"query-string": "9.3.1",
"yeoman-generator": "8.2.2",
"yosay": "3.0.0"
},
"devDependencies": {
"glob": "13.0.6",
"mocha": "11.7.5",
"prettier": "3.8.3",
"yeoman-environment": "6.1.0",
"yeoman-test": "11.4.2"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 100,
"quoteProps": "consistent",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}