-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.87 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.87 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ngx-authentication",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:lib": "ng build ngx-authentication",
"build:demo": "ng build ngx-authentication-showcase --base-href='https://techhiveio.github.io/ngx-authentication'",
"test": "ng test",
"test:lib": "ng test ngx-authentication",
"test:lib-coverage": "ng test ngx-authentication --code-coverage --watch=false",
"report-coverage:lib": "codecov",
"lint": "ng lint",
"e2e": "ng e2e",
"format:check": "prettier --list-different 'projects/**/*.ts'",
"format:write": "prettier --write 'projects/**/*.ts'",
"publish:lib": "npx semantic-release",
"semantic-release": "semantic-release"
},
"private": true,
"license": "MIT",
"author": {
"name": "Techhive.IO",
"email": "info@techhive.io",
"url": "https://www.techhive.io"
},
"bugs": {
"url": "https://github.com/techhiveIO/ngx-authentication/issues"
},
"repository": "git+https://github.com/techhiveIO/ngx-authentication.git",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"projects/**/*.ts": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"angular",
"typescript",
"ngx-authentication",
"framework",
"authentication"
],
"dependencies": {
"@angular/animations": "~8.2.9",
"@angular/common": "~8.2.9",
"@angular/compiler": "~8.2.9",
"@angular/core": "~8.2.9",
"@angular/forms": "~8.2.9",
"@angular/platform-browser": "~8.2.9",
"@angular/platform-browser-dynamic": "~8.2.9",
"@angular/router": "~8.2.9",
"rxjs": "~6.5.3",
"tslib": "~1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.8",
"@angular-devkit/build-ng-packagr": "~0.803.8",
"@angular/cli": "~8.3.8",
"@angular/compiler-cli": "~8.2.9",
"@angular/language-service": "~8.2.9",
"@commitlint/cli": "~8.2.0",
"@commitlint/config-conventional": "~8.2.0",
"@commitlint/prompt": "~8.2.0",
"@types/jasmine": "~3.4.2",
"@types/jasminewd2": "~2.0.8",
"@types/node": "~12.7.11",
"codecov": "^3.6.1",
"codelyzer": "~5.1.2",
"husky": "~3.0.8",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "~1.4.2",
"lint-staged": "~9.4.1",
"ng-packagr": "~5.5.1",
"prettier": "~1.18.2",
"protractor": "~5.4.2",
"semantic-release": "~15.13.24",
"ts-node": "~8.4.1",
"tsickle": "~0.37.0",
"tslint": "~5.20.0",
"typescript": "~3.5.3"
}
}