-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 3.69 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
117
118
119
120
{
"name": "@bettercare/better-ui-components",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"clean": "rimraf ./dist",
"lint": "ng lint",
"e2e": "ng e2e",
"test:watch": "ng test",
"release": "standard-version",
"release:patch": "npm run release -- --release-as patch",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"publish:aql-result-table": "cd /dist/aql-result-table && npm publish --access=public",
"test:aql-result-table": "ng test aql-result-table --watch=false --browsers=ChromeHeadlessCustom",
"test": "npm run test:aql-result-table",
"build:ci": "npm run clean && npm run test"
},
"description": "Better UI components is a set of components, directives, services and other tools to help you build and collect EHR data",
"keywords": [
"angular",
"ui",
"component",
"service",
"better"
],
"license": "Apache-2.0",
"dependencies": {
"@angular/animations": "~10.1.0",
"@angular/common": "~10.1.0",
"@angular/compiler": "~10.1.0",
"@angular/core": "~10.1.0",
"@angular/forms": "~10.1.0",
"@angular/platform-browser": "~10.1.0",
"@angular/platform-browser-dynamic": "~10.1.0",
"@angular/router": "~10.1.0",
"@fortawesome/fontawesome-free": "^5.15.2",
"@ng-bootstrap/ng-bootstrap": "~8.0.4",
"@ng-select/ng-select": "~3.7.3",
"@ngx-translate/core": "~12.1.2",
"@ngx-translate/http-loader": "~4.0.0",
"@stockopedia/angular-inport": "^3.0.0",
"angular-resizable-element": "~3.3.0",
"bootstrap": "^4.6.0",
"core-js": "^3.8.3",
"husky": "^5.0.9",
"idb-keyval": "^3.2.0",
"intl": "~1.2.5",
"jquery": "~3.4.1",
"jszip": "~3.2.2",
"lodash": "~4.17.15",
"lodash-es": "^4.17.20",
"ngx-markdown": "8.2.2",
"ngx-monaco-editor": "~8.1.1",
"ngx-sortablejs": "^3.1.4",
"ngx-toastr": "~12.0.0",
"ngx-ui-switch": "~9.0.1",
"ngx-uploader": "~8.0.0",
"rxjs": "~6.6.0",
"sortablejs": "1.9.0",
"tslib": "^2.0.0",
"xml-beautifier": "~0.4.3",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1001.7",
"@angular/cli": "~10.1.0",
"@angular/compiler-cli": "~10.1.0",
"@angular/localize": "^10.1.6",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/glob": "^7.1.3",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/lodash-es": "^4.17.4",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"glob": "^7.1.6",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"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",
"ng-packagr": "^10.1.0",
"protractor": "~7.0.0",
"puppeteer": "^7.1.0",
"standard-version": "^9.1.1",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"scripts": {
"postbump": "node scripts/syncVersions.js && git add **/package.json"
}
},
"main": "commitlint.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/better-care/better-ui-components.git"
},
"author": {
"name": "Benjamin Muhic",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/better-care/better-ui-components/issues"
},
"homepage": "https://github.com/better-care/better-ui-components#readme"
}