-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
114 lines (114 loc) · 3.82 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
{
"name": "@ngneat/until-destroy",
"version": "0.0.0",
"description": "RxJS operator that unsubscribes when Angular component is destroyed",
"license": "MIT",
"private": true,
"scripts": {
"nx": "nx",
"postinstall": "husky install",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors init",
"release": "cd libs/until-destroy && standard-version --infile ../../CHANGELOG.md --skip.bump --skip.commit --skip.tag",
"lint": "nx lint until-destroy",
"test": "nx run-many --target test --projects until-destroy,until-destroy-migration --run-in-band",
"test:watch": "nx test until-destroy --run-in-band --watch-all",
"test:integration": "nx test integration --run-in-band",
"test:integration:watch": "ng test --project integration --run-in-band --watch",
"prebuild": "nx build until-destroy --skip-nx-cache",
"build": "pnpm prebuild && pnpm postbuild",
"postbuild": "pnpm build:migration && cpx README.md dist/libs/until-destroy",
"build:migration": "nx build until-destroy-migration --skip-nx-cache",
"build:integration": "nx build integration --configuration production",
"serve:integration": "nx serve integration",
"serve:integration:static": "serve -l 4200 -s dist/apps/integration",
"format": "prettier --write \"**/*.{js,ts,html,md,json}\""
},
"maintainers": [
"Netanel Basal",
"Artur Androsovych"
],
"keywords": [
"Angular easy unsubscribe",
"RxJS easy unsubscribe",
"RxJS operator unsubscribe",
"Angular unsubscribe"
],
"devDependencies": {
"@angular-builders/custom-webpack": "17.0.1",
"@angular-devkit/build-angular": "17.2.3",
"@angular-devkit/core": "17.2.3",
"@angular-devkit/schematics": "17.2.3",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/template-parser": "17.0.1",
"@angular/cli": "~17.2.0",
"@angular/common": "17.2.4",
"@angular/compiler": "17.2.4",
"@angular/compiler-cli": "17.2.4",
"@angular/core": "17.2.4",
"@angular/platform-browser": "17.2.4",
"@angular/platform-browser-dynamic": "17.2.4",
"@angular/router": "17.2.4",
"@babel/core": "7.20.2",
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@nrwl/tao": "18.1.2",
"@nx/angular": "18.1.2",
"@nx/cypress": "18.1.2",
"@nx/eslint": "18.1.2",
"@nx/eslint-plugin": "18.1.2",
"@nx/jest": "18.1.2",
"@nx/workspace": "18.1.2",
"@schematics/angular": "17.2.3",
"@types/jest": "29.4.4",
"@types/minimist": "1.2.2",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"all-contributors-cli": "^6.24.0",
"autoprefixer": "^10.4.0",
"cpx": "1.5.0",
"cypress": "9.6.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-ban": "^1.6.0",
"eslint-plugin-cypress": "2.15.1",
"glob": "^7.2.3",
"husky": "7.0.4",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-preset-angular": "14.0.3",
"lint-staged": "^11.2.6",
"minimist": "1.2.6",
"ng-packagr": "17.2.1",
"nx": "18.1.2",
"postcss": "^8.4.19",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "2.7.1",
"rxjs": "7.8.1",
"rxjs-6": "npm:rxjs@^6.6.7",
"serve": "^12.0.1",
"standard-version": "^9.5.0",
"start-server-and-test": "^1.14.0",
"ts-jest": "29.1.1",
"ts-morph": "^7.3.0",
"tslib": "^2.4.1",
"typescript": "5.3.3",
"zone.js": "0.14.4"
},
"lint-staged": {
"*.{js,ts,html,md,json}": [
"prettier --write"
]
},
"prettier": {
"tabWidth": 2,
"printWidth": 95,
"endOfLine": "lf",
"singleQuote": true,
"arrowParens": "avoid"
}
}