-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
116 lines (116 loc) · 3.94 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
116
{
"name": "@sebgroup/ng-bootstrap",
"version": "1.0.0",
"homepage": "https://sebgroup.github.io/ng-bootstrap/",
"scripts": {
"ng": "ng",
"start": "ng serve --port=4201",
"build:demo": "ng build --configuration production --base-href https://sebgroup.github.io/ng-bootstrap/ && copyfiles -f src/404.html dist/ng-bootstrap",
"build-dev": "ng build --configuration production --base-href https://sebgroup.github.io/ng-bootstrap/dev/ --output-path dist/ng-bootstrap/dev && copyfiles -f src/dev/404.html dist/ng-bootstrap/dev",
"build": "copyfiles -u 1 'scss/**/*.scss' dist/lib/scss && copyfiles -f CHANGELOG.md LICENSE.md README.md scss/package.json dist/lib",
"test": "ng test",
"test-ci": "ng test --watch=false --progress --browsers=ChromeHeadlessNoSandbox",
"lint": "ng lint",
"e2e": "ng e2e",
"e2e-ci": "ng e2e --protractor-config=e2e/protractor-ci.conf.js",
"commit": "git-cz",
"semantic-release": "semantic-release && npm run build",
"package-lock-sanitizer": "package-lock-sanitizer",
"format-all": "prettier --config ./.prettierrc --write \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\"",
"format-staged": "pretty-quick --staged",
"format-check": "prettier --config ./.prettierrc --list-different \"src/{app,environments,assets}/**/*{.ts,.js,.json,.css,.scss}\"",
"precommit": "npm run format-staged && npm run lint --fix --force"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run package-lock-sanitizer && git add package-lock.json",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"pkgRoot": "./dist/lib",
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"next",
"next-major",
{
"name": "release\\/([-a-z]*)",
"channel": "${name.replace(/^release\\//g, '')}",
"prerelease": "${name.replace(/^release\\//g, '')}"
}
]
},
"private": true,
"dependencies": {
"@angular/animations": "^12.1.3",
"@angular/common": "^12.1.3",
"@angular/compiler": "^12.1.3",
"@angular/core": "^12.1.3",
"@angular/forms": "^12.1.3",
"@angular/localize": "^12.1.3",
"@angular/platform-browser": "^12.1.3",
"@angular/platform-browser-dynamic": "^12.1.3",
"@angular/router": "^12.1.3",
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
"@sebgroup/bootstrap": "^6.0.0",
"angular-exemplify": "^3.1.4",
"body-scroll-lock": "^3.1.5",
"core-js": "^2.6.12",
"mobile-detect": "^1.4.5",
"prismjs": "^1.24.1",
"raw-loader": "^0.5.1",
"rxjs": "^6.6.7",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.1.3",
"@angular/cli": "^12.1.3",
"@angular/compiler-cli": "^12.1.3",
"@angular/language-service": "^12.1.3",
"@babel/core": "^7.14.8",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/jasmine": "^3.8.1",
"@types/jasminewd2": "^2.0.10",
"codelyzer": "^6.0.2",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.8",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"package-lock-sanitizer": "^1.0.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"protractor": "~7.0.0",
"replace": "^1.2.1",
"semantic-release": "^17.4.4",
"ts-node": "~7.0.0",
"tslint": "~6.1.0",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/sebgroup/ng-bootstrap.git"
},
"publishConfig": {
"access": "restricted"
}
}