forked from taiga-family/ng-polymorpheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.32 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
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@tinkoff/ng-polymorpheus",
"version": "3.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"dev:ssr": "ng run demo:serve-ssr",
"build:ssr": "ng build --prod && ng run demo:server:production",
"prerender": "ng run demo:prerender",
"build": "ng build",
"postbuild": "node scripts/postbuild.js",
"test": "ng test",
"lint": "ng lint",
"typecheck": "tsc --noEmit --skipLibCheck",
"release": "standard-version",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"publish": "npm run build && npm publish ./dist/ng-polymorpheus"
},
"description": "This is a small library for customizing components appearance",
"keywords": [
"angular",
"ng",
"template",
"polymorph",
"component",
"function",
"context",
"context",
"ng-template",
"TemplateRef",
"ngTemplateOutlet",
"ngComponentOutlet"
],
"license": "Apache-2.0",
"author": {
"name": "Alex Inkin",
"email": "[email protected]"
},
"contributors": ["Roman Sedov <[email protected]> (http://marsibarsi.me/)"],
"repository": "https://github.com/TinkoffCreditSystems/ng-polymorpheus",
"bugs": "https://github.com/TinkoffCreditSystems/ng-polymorpheus/issues",
"homepage": "https://github.com/TinkoffCreditSystems/ng-polymorpheus#README",
"schematics": "./schematics/collection.json",
"dependencies": {
"@angular/animations": "9.1.13",
"@angular/common": "9.1.13",
"@angular/compiler": "9.1.13",
"@angular/core": "9.1.13",
"@angular/forms": "9.1.13",
"@angular/platform-browser": "9.1.13",
"@angular/platform-browser-dynamic": "9.1.13",
"@angular/platform-server": "9.1.13",
"@angular/router": "9.1.13",
"@nguniversal/express-engine": "^9.1.1",
"@ng-web-apis/common": "^1.9.0",
"@ng-web-apis/universal": "^1.9.2",
"@tinkoff/ng-dompurify": "^3.0.0",
"core-js": "^2.6.9",
"dompurify": "^2.2.6",
"express": "^4.15.2",
"highlight.js": "^10.4.1",
"ngx-highlightjs": "^4.1.3",
"rxjs": "~6.6.3",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.13",
"@angular-devkit/build-ng-packagr": "~0.901.13",
"@angular-devkit/core": "^9.1.13",
"@angular-devkit/schematics": "^9.1.13",
"@angular-devkit/schematics-cli": "~0.901.13",
"@angular/cli": "^9.1.13",
"@angular/compiler-cli": "^9.1.13",
"@angular/language-service": "^9.1.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nguniversal/builders": "^9.1.1",
"@tinkoff/linters": "^0.6.0",
"@types/dompurify": "2.0.0",
"@types/express": "^4.17.0",
"@types/jasmine": "^3.6.2",
"@types/jasminewd2": "^2.0.8",
"@types/node": "12.19.9",
"codelyzer": "^5.1.0",
"coveralls": "^3.1.0",
"husky": "^4.3.6",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"lint-staged": "^10.5.3",
"ng-bullet": "^1.0.3",
"ng-packagr": "9.1.5",
"prettier": "^2.2.1",
"standard-version": "^9.0.0",
"stylelint": "^10.0.1",
"ts-node": "^9.1.1",
"tsickle": "0.34.0",
"tslint": "~5.15.0",
"tsutils": "^3.17.1",
"typescript": "~3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run typecheck"
}
},
"lint-staged": {
"*.{js,ts,html,md,less,json}": ["prettier --write", "git add"],
"*.ts": "tslint"
},
"standard-version": {
"scripts": {
"postbump": "node scripts/syncVersions.js && git add **/package.json"
}
},
"engines": {
"node": ">= 10",
"npm": ">= 3"
}
}