forked from swiety85/angular2gridster
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.02 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.02 KB
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
{
"name": "@hyperviewhq/angular2gridster",
"version": "20.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build angular2gridster --configuration production",
"test": "ng test",
"lint": "ng lint",
"eslint": "eslint ./src/app --ext .ts",
"depcheck": "depcheck --skip-missing=true --ignores tslib,@angular-devkit/core,@angular-eslint/builder,@angular-eslint/eslint-plugin,@angular-eslint/eslint-plugin-template,@angular-eslint/schematics,@angular-eslint/template-parser",
"e2e": "ng e2e",
"release-rc": "standard-version --prerelease rc",
"release-major": "standard-version -r major",
"release-minor": "standard-version -r minor",
"release-fix": "standard-version -r patch",
"release-dry": "standard-version --dry-run -r patch",
"publish-lib": "npm run build && node ./updatePackageJson.js && cp -rf ./README.md ./dist/angular2gridster && cd ./dist/angular2gridster && npm publish --access public",
"update-demo": "npm run build && ng build --configuration production --base-href /angular2gridster/ && gh-pages -d dist/gridster-demo"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/HyperviewHQ/angular2gridster.git"
},
"author": "Rami Jebara <rami.jebara@hyperviewhq.com>",
"keywords": [
"gridster",
"grid",
"gridLayout",
"angular",
"dashboard",
"ngx",
"drag&drop",
"widgets"
],
"bugs": {
"url": "https://github.com/HyperviewHQ/angular2gridster/issues"
},
"homepage": "https://github.com/HyperviewHQ/angular2gridster#readme",
"dependencies": {
"@angular/animations": "^20.2.2",
"@angular/common": "^20.2.2",
"@angular/compiler": "^20.2.2",
"@angular/core": "^20.2.2",
"@angular/forms": "^20.2.2",
"@angular/platform-browser": "^20.2.2",
"@angular/platform-browser-dynamic": "^20.2.2",
"rxjs": "^7.8.1",
"tslib": "^2.6.0",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.2.1",
"@angular-devkit/core": "^20.2.1",
"@angular-eslint/builder": "^17.5.3",
"@angular-eslint/eslint-plugin": "^17.5.3",
"@angular-eslint/eslint-plugin-template": "^17.5.3",
"@angular-eslint/template-parser": "^17.5.3",
"@angular/cli": "^20.2.1",
"@angular/compiler-cli": "^20.2.2",
"@types/node": "^20.19.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"depcheck": "^1.4.7",
"edit-json-file": "^1.8.1",
"eslint": "^8.57.1",
"eslint-plugin-sonarjs": "^0.19.0",
"gh-pages": "^5.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^20.2.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"description": "[](https://badge.fury.io/js/angular2gridster)",
"main": "updatePackageJson.js"
}