-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
107 lines (107 loc) · 3.78 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
{
"name": "angular-resizable-element",
"version": "7.0.2",
"description": "An angular 15.0+ directive that allows an element to be dragged and resized",
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"pnpm test:watch\"",
"build:demo": "ng build --configuration production",
"build:lib": "copyfiles package.json projects/angular-resizable-element && ng build angular-resizable-element --configuration production && pnpm copyfiles",
"build:clean": "rm -rf dist",
"copyfiles": "copyfiles CHANGELOG.md README.md LICENSE dist/angular-resizable-element",
"test": "pnpm lint && ng test angular-resizable-element --watch=false --code-coverage && pnpm build:lib && pnpm build:clean",
"test:watch": "ng test angular-resizable-element",
"lint": "ng lint",
"commit": "git-cz",
"compodoc": "compodoc -p tsconfig-compodoc.json -d dist/demo/docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"prerelease": "pnpm test",
"release:git": "standard-version && git push --follow-tags origin main",
"release:npm": "pnpm build:lib && pnpm publish dist/angular-resizable-element",
"release": "pnpm release:git && pnpm release:npm",
"postrelease": "pnpm gh-pages",
"gh-pages": "pnpm build:clean && pnpm build:demo && pnpm compodoc && ng deploy && pnpm build:clean",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angular-resizable-element.git"
},
"keywords": [
"angular",
"angular2",
"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-devkit/build-angular": "^15.0.3",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/animations": "^15.0.3",
"@angular/cli": "^15.0.3",
"@angular/common": "^15.0.3",
"@angular/compiler": "^15.0.3",
"@angular/compiler-cli": "^15.0.3",
"@angular/core": "^15.0.3",
"@angular/forms": "^15.0.3",
"@angular/platform-browser": "^15.0.3",
"@angular/platform-browser-dynamic": "^15.0.3",
"@angular/router": "^15.0.3",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/prompt": "^17.3.0",
"@compodoc/compodoc": "^1.1.19",
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^18.11.13",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"angular-cli-ghpages": "^1.0.5",
"chai": "^4.3.7",
"commitizen": "^4.2.6",
"concurrently": "^7.6.0",
"copyfiles": "^2.4.1",
"eslint": "^8.29.0",
"husky": "^8.0.2",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-mocha": "^2.0.1",
"mocha": "^10.2.0",
"ng-packagr": "^15.0.3",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"rxjs": "^7.6.0",
"sinon": "^14.0.2",
"sinon-chai": "^3.7.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "~4.8.4",
"zone.js": "^0.11.8"
},
"peerDependencies": {
"@angular/core": ">=15.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "pnpm@7.18.1",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@angular-devkit/*"
]
}
}
}