forked from ngneat/until-destroy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "ngx-take-until-destroy",
"version": "5.3.1",
"description": "RxJS operator that unsubscribes when component destroyed",
"license": "MIT",
"scripts": {
"build": "ng-packagr -p package.json && rm dist/ngx-take-until-destroy.metadata.json",
"test": "jest --env=node"
},
"ngPackage": {
"lib": {
"entryFile": "public_api.ts"
}
},
"maintainers": [
"Netanel Basal"
],
"repository": {
"url": "https://github.com/NetanelBasal/ngx-take-until-destroy"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|js)$"
},
"peerDependencies": {
"rxjs": "^6.0.0"
},
"devDependencies": {
"@angular/compiler": "^6.1.9",
"@angular/compiler-cli": "^6.1.9",
"@angular/core": "^6.1.9",
"@types/jest": "^22.0.1",
"@types/node": "^10.1.4",
"jest": "^22.0.5",
"ng-packagr": "^4.2.0",
"rxjs": "6.2.2",
"ts-jest": "^22.4.6",
"typescript": "^2.7.2"
}
}