-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
97 lines (97 loc) · 3.7 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
{
"name": "ng-idle",
"description": "A module for responding to idle users in Angular applications.",
"version": "16.0.0",
"repository": {
"type": "git",
"url": "https://github.com/moribvndvs/ng2-idle.git"
},
"author": "Ng-Idle Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/moribvndvs/ng2-idle.git/issues"
},
"homepage": "https://github.com/moribvndvs/ng2-idle.git#readme",
"private": true,
"scripts": {
"clean:coverage": "rimraf coverage",
"clean:dist": "rimraf dist",
"ng": "ng",
"start": "ng serve",
"prebuild:libs": "npm run clean:dist",
"build:libs": "ng build core && ng build keepalive",
"build:docs": "cd ./projects/docs && npm link ../../dist/core && npm link ../../dist/keepalive && ng build docs --base-href=/ng2-idle/",
"pretest": "npm run build:libs",
"test": "ng test core --no-watch --no-progress --code-coverage --browsers=ChromeHeadlessNoSandbox && ng test keepalive --no-watch --no-progress --code-coverage --browsers=ChromeHeadlessNoSandbox",
"precoverage": "npm run clean:coverage && npm test",
"coverage": "cat coverage/core/lcov.info coverage/keepalive/lcov.info | node_modules/.bin/coveralls",
"lint": "ng lint core && ng lint keepalive",
"lint:fix": "ng lint core --fix=true && ng lint keepalive --fix=true",
"e2e": "ng e2e",
"copy:info": "for d in ./dist/*; do cp LICENSE README.md $d; done",
"release": "lerna version --conventional-commits --force-publish",
"postrelease": "npm publish ./dist/core && npm publish ./dist/keepalive",
"version": "npm run build:libs && npm run build:docs && npm run copy:info && node scripts/postrelease.js && git add .",
"prepare": "husky"
},
"dependencies": {
"@angular/animations": "^18.2.5",
"@angular/cdk": "^18.2.4",
"@angular/common": "^18.2.5",
"@angular/compiler": "^18.2.5",
"@angular/core": "^18.2.5",
"@angular/forms": "^18.2.5",
"@angular/material": "^18.2.4",
"@angular/platform-browser": "^18.2.5",
"@angular/platform-browser-dynamic": "^18.2.5",
"@angular/router": "^18.2.5",
"@fortawesome/angular-fontawesome": "^0.15.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"ngx-highlightjs": "^12.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.0",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.4",
"@angular-eslint/builder": "^18.0.1",
"@angular-eslint/eslint-plugin": "^18.0.1",
"@angular-eslint/eslint-plugin-template": "^18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular-eslint/template-parser": "^18.0.1",
"@angular/cli": "^18.2.4",
"@angular/compiler-cli": "^18.2.5",
"@angular/language-service": "^18.2.5",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/jasmine": "~4.3.1",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^16.18.58",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"commitlint": "^19.5.0",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^8.38.0",
"husky": "^9.1.6",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"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",
"lerna": "^8.1.8",
"ng-packagr": "^18.0.0",
"protractor": "~7.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}