forked from Sunbird-Lern/discussions-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.31 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
121
122
123
124
{
"name": "sunbird-ed-discussions-ui-v8",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"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 && npm run copy:assets",
"build-doc": "compodoc -p tsconfig.doc.json"
},
"dependencies": {
"@angular/animations": "^8.0.0",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/forms": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/router": "^8.0.0",
"copyfiles": "^2.4.1",
"core-js": "^2.5.4",
"dayjs": "^1.10.4",
"ngx-chips": "2.0.2",
"ngx-infinite-scroll": "^8.0.2",
"nodemon": "^2.0.7",
"rxjs": "~6.4.0",
"tslib": "^1.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.801.3",
"@angular-devkit/build-ng-packagr": "~0.801.3",
"@angular/cli": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/language-service": "^8.0.0",
"@project-sunbird/client-services": "4.2.3",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^26.0.22",
"@types/node": "~8.9.4",
"codelyzer": "~4.5.0",
"compodoc": "^0.0.41",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^26.6.3",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"lodash-es": "^4.17.20",
"ng-packagr": "^4.7.1",
"ngx-chips": "2.0.2",
"protractor": "~5.4.0",
"ts-jest": "^26.5.4",
"ts-node": "~7.0.0",
"tsickle": "^0.34.0",
"tslib": "^1.9.0",
"tslint": "~5.11.0",
"typescript": "~3.4.0"
},
"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": []
}
}