-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
120 lines (120 loc) · 3.84 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
{
"name": "ngx-modal2",
"description": "Open modal window for your Angular X application",
"version": "0.0.0-dev",
"scripts": {
"dev": "webpack-dev-server --progress --colors",
"dev2": "sh Taskfile dev2",
"karma": "karma start",
"test:r": "npm run karma -- --single-run",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:w": "npm run karma",
"test:cov": "npm run karma -- --single-run --coverage",
"build": "sh Taskfile build",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint:w": "npm run tsclint -- --watch",
"eslint": "eslint src --ext ts",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "eslint src --ext ts --fix",
"tslint:fix": "tslint -p tsconfig.json --fix",
"lint:w": "run-p tsclint:w eslint:w",
"prepush": "npm run test && npm run build"
},
"keywords": [
"modal",
"ngx",
"angular2"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"tslib": "^1.10.0"
},
"peerDependencies": {
"focus-trap": ">=5 <6",
"rxjs": ">=6.X <7",
"@angular/core": ">=2.4 <=9",
"@angular/common": ">=2.4 <=9",
"@angular/router": ">=2.4 <=9"
},
"devDependencies": {
"@angular/common": "8",
"@angular/compiler": "8",
"@angular/compiler-cli": "8",
"@angular/core": "8",
"@angular/platform-browser": "8",
"@angular/platform-browser-dynamic": "8",
"@angular/router": "8",
"@semantic-release/changelog": "3.0.4",
"@semantic-release/commit-analyzer": "7.0.0-beta.2",
"@semantic-release/git": "7.1.0-beta.3",
"@semantic-release/github": "5.4.3",
"@semantic-release/gitlab": "3.1.7",
"@semantic-release/npm": "5.2.0-beta.6",
"@semantic-release/release-notes-generator": "7.3.0",
"@types/core-js": "2.5.2",
"@types/eslint": "6.1.1",
"@types/html-webpack-plugin": "3.2.1",
"@types/jasmine": "3.4.0",
"@types/karma": "3.0.3",
"@types/karma-jasmine": "0.0.31",
"@types/karma-webpack": "2.0.7",
"@types/node": "12.7.2",
"@types/webpack": "4.39.1",
"@types/webpack-dev-server": "3.1.7",
"@typescript-eslint/eslint-plugin-tslint": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"angular-router-loader": "0.8.5",
"awesome-typescript-loader": "5.2.1",
"codelyzer": "5.1.0",
"core-js": "2.6.9",
"css-loader": "3.2.0",
"css-to-string-loader": "0.1.3",
"ejs-loader": "0.3.3",
"eslint": "6.2.2",
"eslint-import-resolver-node": "0.3.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-only-warn": "^1.0.1",
"eslint-plugin-perf-standard": "1.0.3",
"eslint-plugin-unicorn": "10.0.0",
"eslint-plugin-wix-editor": "3.0.0",
"file-loader": "4.2.0",
"focus-trap": "5.0.2",
"html-webpack-plugin": "3.2.0",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "3.4.0",
"karma": "4.3.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "2.1.0",
"karma-jasmine": "2.0.1",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "4.0.2",
"ng-packagr": "5.5.0",
"raw-loader": "3.1.0",
"rxjs": "6.X",
"rxjs-tslint": "0.1.7",
"semantic-release": "^16.0.0-beta.19",
"style-loader": "1.0.0",
"ts-node": "8.3.0",
"tsickle": "0.37.0",
"tslint": "5.19.0",
"tslint-clean-code": "0.2.9",
"tslint-microsoft-contrib": "6.2.0",
"tslint-sonarts": "1.9.0",
"typescript": "3.5.3",
"watchexec-bin": "1.0.0",
"webpack": "4.39.3",
"webpack-cli": "3.3.7",
"webpack-dev-server": "3.8.0",
"zone.js": "0.10.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}