-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 3.22 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
{
"name": "ngx-drag-resize",
"description": "The project contains Angular library that provides opportunity to use drag and resize functionality on HTML element",
"keywords": [
"angular",
"ngx",
"drag",
"resize"
],
"homepage": "https://github.com/dmytro-parfenov/ngx-drag-resize",
"bugs": {
"email": "dmitryparfenov937@gmail.com",
"url": "https://github.com/dmytro-parfenov/ngx-drag-resize/issues"
},
"license": "MIT",
"author": {
"email": "dmitryparfenov937@gmail.com",
"name": "Dmytro Parfenov"
},
"scripts": {
"ng": "ng",
"start:lib": "ng run ngx-drag-resize:build --watch",
"start:demo": "ng run ngx-drag-resize-demo:serve --host 0.0.0.0 -o --disable-host-check",
"test:lib": "ng run ngx-drag-resize:test",
"test:lib:ci": "ng run ngx-drag-resize:test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"test:demo": "ng run ngx-drag-resize-demo:test",
"test:demo:ci": "ng run ngx-drag-resize-demo:test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"lint:lib": "ng run ngx-drag-resize:lint",
"lint:demo": "ng run ngx-drag-resize-demo:lint",
"build:lib:prod": "ng run ngx-drag-resize:build:production",
"build:demo:prod": "ng run ngx-drag-resize-demo:build:production",
"docs:lib": "npm run compodoc --prefix projects/ngx-drag-resize",
"lib:version:major": "npm run version:major --prefix projects/ngx-drag-resize",
"lib:version:minor": "npm run version:minor --prefix projects/ngx-drag-resize",
"lib:version:patch": "npm run version:patch --prefix projects/ngx-drag-resize",
"prepublish:lib": "npm run lint:lib && npm run test:lib:ci && npm run build:lib:prod",
"predeploy:demo": "npm run prepublish:lib && npm run lint:demo && npm run test:demo:ci && npm run build:demo:prod"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/material": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular-eslint/builder": "^18.4.1",
"@angular-eslint/eslint-plugin": "^18.4.1",
"@angular-eslint/eslint-plugin-template": "^18.4.1",
"@angular-eslint/schematics": "^18.4.1",
"@angular-eslint/template-parser": "^18.4.1",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"jasmine-core": "^5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^19.0.0",
"protractor": "~7.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.6.3"
},
"engines": {
"node": ">=22"
}
}