forked from mattlewis92/angular-resizable-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.93 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
{
"name": "angular-resizable-element",
"version": "3.2.4",
"description": "An angular 6.0+ directive that allows an element to be dragged and resized",
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angular-resizable-element.git"
},
"keywords": [
"angular",
"angular2",
"angular6",
"resizable"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/angular-resizable-element/issues"
},
"homepage": "https://github.com/mattlewis92/angular-resizable-element#readme",
"devDependencies": {
"@angular/common": "^7.2.3",
"@angular/compiler": "^7.2.3",
"@angular/compiler-cli": "^7.2.3",
"@angular/core": "^7.2.3",
"@angular/platform-browser": "^7.2.3",
"@angular/platform-browser-dynamic": "^7.2.3",
"@compodoc/compodoc": "^1.1.7",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/sinon": "^7.0.5",
"@types/sinon-chai": "^3.2.2",
"@types/webpack": "^4.4.24",
"chai": "^4.2.0",
"codecov-lite": "^0.1.3",
"codelyzer": "^4.5.0",
"commitizen": "^3.0.5",
"concurrently": "^4.1.0",
"copyfiles": "^2.1.0",
"core-js": "^2.6.3",
"cz-conventional-changelog": "^2.1.0",
"fork-ts-checker-webpack-plugin": "^0.5.2",
"husky": "^1.3.1",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-rc.6",
"mocha": "^5.2.0",
"ng-packagr": "^4.7.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"rxjs": "^6.4.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"standard-version": "^4.4.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"tsickle": "0.34.0",
"tslint": "^5.12.1",
"tslint-config-mwl": "^0.5.2",
"tslint-loader": "^3.6.0",
"typescript": "~3.2.4",
"validate-commit-msg": "^2.8.0",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"zone.js": "^0.8.29"
},
"peerDependencies": {
"@angular/core": ">=6.0.0 <9.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "pretty-quick --staged"
}
},
"main": "bundles/angular-resizable-element.umd.js",
"module": "fesm5/angular-resizable-element.js",
"es2015": "fesm2015/angular-resizable-element.js",
"esm5": "esm5/angular-resizable-element.js",
"esm2015": "esm2015/angular-resizable-element.js",
"fesm5": "fesm5/angular-resizable-element.js",
"fesm2015": "fesm2015/angular-resizable-element.js",
"typings": "angular-resizable-element.d.ts",
"metadata": "angular-resizable-element.metadata.json",
"sideEffects": false,
"dependencies": {
"tslib": "^1.9.0"
}
}