-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.39 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.39 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "sunbird-ed-discussions-ui",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build discussion-ui",
"test": "jest",
"demo": "npm run demo:copy:assets && ng serve",
"demo:copy:assets": "cp -r ./projects/discussion-ui/assets/* ./demo/src/assets/discussion-ui",
"test:ci": "jest --silent --ci --w 2 --collectCoverage=true --coverageReporters=lcov",
"lint": "ng lint",
"e2e": "ng e2e",
"copy:assets": "cp -r ./projects/discussion-ui/assets dist/discussion-ui/",
"build-lib": "ng build discussion-ui && npm run copy:assets",
"build-doc": "compodoc -p tsconfig.doc.json",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points"
},
"engines": {
"node": ">=16.13",
"npm": ">=8.19.3"
},
"dependencies": {
"@angular/animations": "16.2.12",
"@angular/common": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/core": "16.2.12",
"@angular/forms": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"copyfiles": "2.4.1",
"core-js": "2.5.4",
"dayjs": "1.10.4",
"ngx-chips": "3.0.0",
"ngx-infinite-scroll": "16.0.0",
"nodemon": "2.0.7",
"rxjs": "6.6.7",
"tslib": "2.6.2",
"zone.js": "0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.12",
"@angular/cli": "16.2.12",
"@angular/compiler-cli": "16.2.12",
"@angular/language-service": "16.2.12",
"@project-sunbird/client-services": "7.0.6",
"@types/jasmine": "3.6.0",
"@types/jasminewd2": "2.0.3",
"@types/jest": "26.0.22",
"@types/node": "12.11.1",
"codelyzer": "6.0.0",
"compodoc": "0.0.41",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "5.0.0",
"jest": "29.7.0",
"karma": "6.4.2",
"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",
"lodash-es": "4.17.21",
"ng-packagr": "16.2.3",
"ngx-chips": "3.0.0",
"protractor": "7.0.0",
"ts-jest": "29.1.2",
"ts-node": "7.0.0",
"tslint": "6.1.0",
"typescript": "4.9.5"
},
"description": "Sunbird discussions ui library",
"repository": {
"type": "git",
"url": "git+https://github.com/Sunbird-Ed/discussions-UI.git"
},
"keywords": [
"sunbird",
"discussion",
"angular"
],
"author": "Vinu Kumar",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sunbird-Ed/discussions-UI/issues"
},
"homepage": "https://github.com/Sunbird-Ed/discussions-UI#readme",
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/projects/discussion-ui/tsconfig.spec.json"
}
},
"browser": false,
"rootDir": "./",
"roots": [
"<rootDir>/projects/discussion-ui/src/"
],
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"coveragePathIgnorePatterns": [],
"testMatch": [
"**/?(*.)(spec).ts"
],
"restoreMocks": true,
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"setupFiles": [],
"transform": {
"^.+\\.(ts)$": "ts-jest"
},
"coverageReporters": [
"text",
"json"
],
"transformIgnorePatterns": []
}
}