-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 4.94 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@anglr/authentication",
"version": "0.0.0-placeholder",
"description": "Angular module used for handling authentication",
"type": "module",
"sideEffects": false,
"workspaces": [
"demo",
"."
],
"scripts": {
"build": "ngc --declaration --declarationDir . --declarationMap",
"api": "api-extractor run --local --verbose -c",
"clean": "rimraf --glob */temp temp es2022 **/tsdoc-metadata.json src/**/*.d.ts src/**/*.d.ts.map */src/**/*.d.ts */src/**/*.d.ts.map ./*.d.ts ./*.d.ts.map */*.d.ts",
"clean:deps": "rimraf package-lock.json node_modules || echo 'node_modules removed'",
"clean:all": "npm run clean && npm run clean:deps",
"ngc": "ngc",
"version:placeholder": "replace-in-file /\\\"version\\\":\\s\\\".*?\\\"/g \"\\\"version\\\": \\\"0.0.0-placeholder\\\"\" package.json --isRegex",
"version:git": "ngv -e \"replace-in-file 0.0.0-placeholder $GIT_VERSION package.json && echo $GIT_VERSION > version.bak\"",
"version:build": "ngv -e \"echo $GIT_VERSION > version.bak\"",
"prepublishOnly": "npm run bundle && npm run version:placeholder && npm run version:git",
"postpublish": "npm run doc && npm run version:placeholder && npm run clean",
"bundle": "npm run clean && npm run build",
"deploy": "npm publish --loglevel error",
"deploy:next": "npm publish --tag next --loglevel error",
"lint": "eslint src/**/*.ts",
"preclean:all": "lerna run clean:all --scope=ng-universal-demo",
"prestart": "npm run build",
"start": "concurrently \"npm run build -- --watch\" \"lerna run start --scope=ng-universal-demo\"",
"doc": "path-exists docs && npm run doc:generate || echo \"No docs generated!\"",
"predoc:generate": "cd docs && git pull && cd ..",
"postdoc:generate": "npm run doc:save",
"doc:generate": "npm run doc:generate:authentication",
"doc:save": "cd docs && git add . && git commit -m \"INT: updated API docs ng-authentication\" && git push && cd ..",
"doc:generate:authentication": "rimraf docs/content/api/ng-authentication && npm run doc:json:authentication && npm run doc:md:authentication && npm run doc:api:authentication",
"doc:json:authentication": "api-extractor run --local --verbose -c api-extractor.json",
"doc:md:authentication": "api-documenter markdown -i temp -o docs/content/api/ng-authentication",
"doc:api:authentication": "copyfiles -u 1 temp/authentication.api.md docs/content/api/ng-authentication && rimraf temp"
},
"engines": {
"node": "^18.13.0 || >=20.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ressurectit/ng-authentication.git"
},
"keywords": [
"angular",
"ng",
"authentication"
],
"author": "kukjevov",
"license": "MIT",
"bugs": {
"url": "https://github.com/ressurectit/ng-authentication/issues"
},
"homepage": "https://github.com/ressurectit/ng-authentication",
"peerDependencies": {
"@angular/core": ">=17.3.0",
"@angular/common": ">=17.3.0",
"@angular/router": ">=17.3.0",
"rxjs": ">=7.5.0",
"@jscrpt/common": ">=6.0.0",
"@anglr/common": ">=19.0.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"lerna": "8.1.3",
"@angular/core": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/router": "^17.3.0",
"rxjs": "^7.5.0",
"@jscrpt/common": "^6.0.0",
"@anglr/common": "^19.0.0",
"@types/node": "^18.15.3",
"@angular/compiler-cli": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/language-service": "^17.3.0",
"@angular/animations": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@microsoft/api-extractor": "7.43.4",
"@microsoft/api-documenter": "7.24.5",
"tslib": "2.6.2",
"eslint": "7.32.0",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"eslint-plugin-ressurectit": "0.1.0",
"rimraf": "5.0.7",
"copyfiles": "2.4.1",
"replace-in-file": "7.1.0",
"path-exists-cli": "2.0.0",
"typescript": "5.4.5",
"npm-git-version": "2.0.0"
},
"module": "./es2022/src/index.js",
"typings": "./src/index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
"./styles": {
"sass": "./styles/index.scss"
},
"./styles/themes/*": {
"sass": "./styles/themes/*.scss"
},
"./typings/*": {
"types": "./typings/*/index.d.ts"
},
".": {
"types": "./src/index.d.ts",
"esm2022": "./es2022/src/index.js",
"es2022": "./es2022/src/index.js",
"node": "./es2022/src/index.js",
"default": "./es2022/src/index.js"
}
}
}