forked from fvilers/ngx-ordered-initializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 951 Bytes
/
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
{
"name": "ngx-ordered-initializer",
"version": "4.0.0",
"description": "An Angular DI token that you can use to provide one or more initialization functions that will be executed in order",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fvilers/ngx-ordered-initializer.git"
},
"keywords": [
"angular",
"dependency-injection",
"initializer"
],
"author": "Fabian Vilers <[email protected]> (https://www.dev-one.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fvilers/ngx-ordered-initializer/issues"
},
"dependencies": {
"@angular/core": "^14.0.0",
"rxjs": "~7.5.6",
"zone.js": "~0.11.8"
},
"homepage": "https://github.com/fvilers/ngx-ordered-initializer#readme",
"devDependencies": {
"typescript": "^4.7.4"
}
}