|
18 | 18 | "homepage": "https://github.com/fulls1z3/ngx-meta#readme", |
19 | 19 | "scripts": { |
20 | 20 | "clean": "rimraf dist", |
21 | | - "build:core": "ts-node tools/build/packager.ts core", |
| 21 | + "build:core": "ng-packagr -p packages/@ngx-meta/core/package.json", |
22 | 22 | "build": "npm run build:core", |
23 | 23 | "lint": "tslint -p ./tsconfig.lint.json --force", |
24 | 24 | "lint:check": "tslint-config-prettier-check ./tslint.lint.json", |
|
27 | 27 | "ci:after": "greenkeeper-lockfile-upload", |
28 | 28 | "test": "jest --runInBand --colors", |
29 | 29 | "test:ci": "jest --ci --updateSnapshot --colors", |
30 | | - "release": "standard-version" |
| 30 | + "release": "standard-version", |
| 31 | + "prepare": "husky install" |
31 | 32 | }, |
32 | 33 | "devDependencies": { |
33 | | - "@angular/common": "^9.1.0", |
34 | | - "@angular/compiler": "^9.1.0", |
35 | | - "@angular/compiler-cli": "^9.1.0", |
36 | | - "@angular/core": "^9.1.0", |
37 | | - "@angular/platform-browser": "^9.1.0", |
38 | | - "@angular/platform-browser-dynamic": "^9.1.0", |
39 | | - "@angular/router": "^9.1.0", |
40 | | - "@commitlint/cli": "^8.3.5", |
41 | | - "@commitlint/config-conventional": "^8.3.4", |
42 | | - "@types/jest": "^23.3.14", |
43 | | - "@types/lodash": "^4.14.150", |
44 | | - "@types/node": "^10.0.0", |
| 34 | + "@angular/common": "^10.1.0", |
| 35 | + "@angular/compiler": "^10.1.0", |
| 36 | + "@angular/compiler-cli": "^10.1.0", |
| 37 | + "@angular/core": "^10.1.0", |
| 38 | + "@angular/platform-browser": "^10.1.0", |
| 39 | + "@angular/platform-browser-dynamic": "^10.1.0", |
| 40 | + "@angular/router": "^10.1.0", |
| 41 | + "@commitlint/cli": "^12.1.4", |
| 42 | + "@commitlint/config-conventional": "^12.1.4", |
| 43 | + "@types/jest": "26.0.8", |
| 44 | + "@types/lodash": "^4.14.171", |
| 45 | + "@types/node": "~8.9.4", |
45 | 46 | "angular-tslint-rules": "^1.20.4", |
46 | 47 | "codelyzer": "^5.2.2", |
47 | | - "cz-conventional-changelog": "^3.1.0", |
48 | | - "husky": "^4.2.0", |
49 | | - "jest": "^23.6.0", |
| 48 | + "cz-conventional-changelog": "^3.3.0", |
| 49 | + "husky": "^7.0.1", |
| 50 | + "jest": "26.2.2", |
50 | 51 | "jest-junit-reporter": "^1.1.0", |
51 | | - "jest-preset-angular": "8.1.2", |
| 52 | + "jest-preset-angular": "8.3.1", |
52 | 53 | "lerna": "^3.20.2", |
53 | | - "lint-staged": "^10.0.0", |
54 | | - "lodash": "^4.17.15", |
55 | | - "ng-packagr": "^9.0.0", |
56 | | - "prettier": "1.19.1", |
| 54 | + "lint-staged": "~11.0.0", |
| 55 | + "lodash": "^4.17.21", |
| 56 | + "ng-packagr": "^10.1.2", |
| 57 | + "prettier": "2.3.2", |
57 | 58 | "prettier-tslint": "^0.4.2", |
58 | 59 | "reflect-metadata": "^0.1.13", |
59 | 60 | "request": "^2.88.2", |
60 | 61 | "rimraf": "^3.0.2", |
61 | | - "rxjs": "~6.5.4", |
62 | | - "ts-node": "^8.9.0", |
63 | | - "tsickle": "^0.38.0", |
| 62 | + "rxjs": "~6.5.5", |
| 63 | + "tsickle": "^0.43.0", |
64 | 64 | "tslint": "^5.20.1", |
65 | 65 | "tslint-config-prettier": "^1.18.0", |
66 | | - "typescript": "~3.8.3", |
| 66 | + "typescript": "~4.0.8", |
67 | 67 | "zone.js": "^0.10.2" |
68 | 68 | }, |
69 | | - "husky": { |
70 | | - "hooks": { |
71 | | - "pre-commit": "lint-staged", |
72 | | - "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" |
73 | | - } |
74 | | - }, |
75 | | - "jest": { |
76 | | - "preset": "jest-preset-angular", |
77 | | - "setupTestFrameworkScriptFile": "./tools/test/jest.setup.ts", |
78 | | - "testResultsProcessor": "./node_modules/jest-junit-reporter", |
79 | | - "testMatch": [ |
80 | | - "**/+(*.)+(spec|test).+(ts|js)?(x)" |
81 | | - ], |
82 | | - "globals": { |
83 | | - "ts-jest": { |
84 | | - "tsConfigFile": "./tsconfig.json" |
85 | | - }, |
86 | | - "__TRANSFORM_HTML__": true |
87 | | - }, |
88 | | - "moduleNameMapper": { |
89 | | - "^@ngx-meta/core": "<rootDir>/packages/@ngx-meta/core/src/index.ts" |
90 | | - }, |
91 | | - "cache": false, |
92 | | - "silent": true, |
93 | | - "collectCoverage": true, |
94 | | - "collectCoverageFrom": [ |
95 | | - "packages/@ngx-meta/core/src/**.ts" |
96 | | - ] |
97 | | - }, |
98 | 69 | "config": { |
99 | 70 | "commitizen": { |
100 | 71 | "path": "./node_modules/cz-conventional-changelog" |
|
0 commit comments