-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.15 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
{
"name": "auto-unsubscribe",
"version": "0.0.0",
"description": "an auto unsubscribe lib for angular",
"scripts": {
"release": "npx standard-version",
"build": "ng-packagr -p package.json",
"test": "jest --env=node",
"commit": "npx git-cz"
},
"keywords": [
"angular",
"rxjs",
"unsubscribe"
],
"peerDependencies": {
"@angular/core": "^8.0.2",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@angular/compiler": "^8.0.2",
"@angular/compiler-cli": "^8.0.2",
"@angular/core": "^8.0.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10",
"jest": "^24.8.0",
"ng-packagr": "^5.3.0",
"prettier": "^1.18.2",
"rxjs": "^6.5.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"private": false,
"author": "",
"license": "MIT",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/tests/.*\\.(ts|js)$"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@angular/cli": "^8.0.4"
}
}