-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 3.18 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
108
109
110
111
112
113
114
115
{
"name": "ng-debug-demo",
"version": "0.0.0",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/sebgroup/ng-debug.git"
},
"bugs": {
"url": "https://github.com/sebgroup/ng-debug/issues"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:lib": "ng build ng-debug",
"test": "ng test",
"test:ci": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"ncp:readme": "ncp ./README.md ./dist/ng-debug/README.md --stopOnErr",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepare": "husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.0",
"@angular/common": "^13.3.0",
"@angular/compiler": "^13.3.0",
"@angular/core": "^13.3.0",
"@angular/forms": "^13.3.0",
"@angular/platform-browser": "^13.3.0",
"@angular/platform-browser-dynamic": "^13.3.0",
"@angular/router": "^13.3.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"commitizen": "^4.2.4",
"core-js": "^2.6.12",
"ncp": "^2.0.0",
"rxjs": "^6.6.7",
"shx": "^0.3.4",
"tslib": "^2.3.1",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.0",
"@angular-eslint/builder": "13.1.0",
"@angular-eslint/eslint-plugin": "13.1.0",
"@angular-eslint/eslint-plugin-template": "13.1.0",
"@angular-eslint/schematics": "13.1.0",
"@angular-eslint/template-parser": "13.1.0",
"@angular/cli": "^13.3.0",
"@angular/compiler-cli": "^13.3.0",
"@angular/language-service": "^13.3.0",
"@types/jasmine": "^3.10.4",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^14.18.12",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "^8.2.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"husky": "^7.0.4",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.17",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-mocha-reporter": "^2.2.5",
"ng-packagr": "^13.3.0",
"protractor": "~7.0.0",
"semantic-release": "^19.0.2",
"ts-node": "~7.0.0",
"typescript": "^4.6.2"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"githubUrl": "https://github.sebank.se",
"githubApiPathPrefix": "api/v3",
"proxy": false
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "dist/ng-debug/"
}
]
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}