-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 3.23 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": "seb-ng-material",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "rimraf e2e/diff/*.png && protractor e2e/protractor.headless.conf.js",
"e2e:golden": "protractor e2e/protractor.golden.conf.js",
"e2e:headless": "protractor e2e/protractor.headless.conf.js",
"e2e:update": "webdriver-manager update --chrome --proxy http://gia.sebank.se:8080 --ignore_ssl",
"theme:compile": "sass --load-path=node_modules --style=compressed projects/seb-ng-material-theme/seb-mat-theme.scss:projects/seb-ng-material-theme/seb-mat-theme.css",
"theme:docs": "copyfiles README.md LICENSE.md projects/seb-ng-material-theme",
"theme:pack": "npm run theme:compile && npm run theme:docs",
"github-pages:deploy": "npx angular-cli-ghpages --dir=dist/seb-ng-material --repo=https://[email protected]/sebgroup/seb-angular-material.git --no-silent",
"travis-deploy-once": "travis-deploy-once --pro",
"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/cdk": "^13.3.0",
"@angular/common": "^13.3.0",
"@angular/compiler": "^13.3.0",
"@angular/core": "^13.3.0",
"@angular/forms": "^13.3.0",
"@angular/material": "^13.3.0",
"@angular/platform-browser": "^13.3.0",
"@angular/platform-browser-dynamic": "^13.3.0",
"@angular/router": "^13.3.0",
"@sebgroup/vanilla": "^5.3.3",
"core-js": "^2.6.11",
"rimraf": "^3.0.0",
"rxjs": "^6.5.5",
"showdown": "^1.9.1",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.0",
"@angular/cli": "^13.3.0",
"@angular/compiler-cli": "^13.3.0",
"@angular/language-service": "^13.3.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@fortawesome/fontawesome-free": "^5.13.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^12.12.38",
"angular-cli-ghpages": "^0.6.2",
"blue-harvest": "^0.3.1",
"codelyzer": "^6.0.0",
"commitizen": "^4.2.4",
"copyfiles": "^2.2.0",
"husky": "^7.0.4",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.17",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"semantic-release": "^15.14.0",
"shx": "^0.3.4",
"ts-node": "^8.10.1",
"tslint": "~6.1.0",
"typescript": "~4.6.2"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}