-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.98 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
{
"name": "karma-material-reporter",
"version": "0.0.0-semantic-release",
"description": "A good looking UI for displaying karma test results",
"main": "index.js",
"scripts": {
"test": "ng test --watch=false",
"test:watch": "ng test --watch=true",
"dev": "karma start dev/karma.conf.js",
"build-ui:watch": "ng build --watch",
"build-ui:prod": "ng build --prod",
"lint": "ng lint karma-material-reporter-ui --fix && :",
"pretty": "prettier --write",
"coverage": "ng test --code-coverage --watch=false",
"build-reporter": "node build/build.js",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{spec,ts}": [
"npm run lint",
"git add"
],
"*.{js,ts,html,json,scss,md,yml}": [
"npm run pretty",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ameerthehacker/karma-material-reporter.git"
},
"keywords": [
"karma",
"reporter",
"material"
],
"author": "ameerthehacker",
"license": "MIT",
"bugs": {
"url": "https://github.com/ameerthehacker/karma-material-reporter/issues"
},
"homepage": "https://github.com/ameerthehacker/karma-material-reporter#readme",
"dependencies": {
"express": "^4.16.4",
"opn": "^5.4.0",
"serve-favicon": "^2.5.0",
"socket.io": "^2.1.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.10.6",
"@angular/animations": "^7.0.4",
"@angular/cdk": "^7.0.4",
"@angular/cli": "~7.0.6",
"@angular/common": "^7.0.4",
"@angular/compiler": "^7.0.4",
"@angular/compiler-cli": "^7.0.4",
"@angular/core": "^7.0.4",
"@angular/flex-layout": "^7.0.0-beta.19",
"@angular/forms": "^7.0.4",
"@angular/http": "^7.0.4",
"@angular/language-service": "^7.0.4",
"@angular/material": "^7.0.4",
"@angular/platform-browser": "^7.0.4",
"@angular/platform-browser-dynamic": "^7.0.4",
"@angular/router": "^7.0.4",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/npm": "^5.1.1",
"@types/jasmine": "~3.0.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~10.12.9",
"codecov": "^3.1.0",
"codelyzer": "~4.5.0",
"core-js": "^2.5.4",
"husky": "^1.2.0",
"jasmine": "^3.3.0",
"jasmine-core": "~3.3.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"karma-mocha-reporter": "^2.2.5",
"lint-staged": "^8.0.5",
"material-icons": "^0.2.3",
"ncp": "^2.0.0",
"prettier": "^1.15.2",
"protractor": "~5.4.1",
"rimraf": "^2.6.2",
"rxjs": "^6.0.0",
"semantic-release": "^15.12.2",
"socket.io-client": "^2.1.1",
"ts-node": "~7.0.1",
"tslint": "~5.11.0",
"typescript": "~3.1.6",
"zone.js": "^0.8.26"
}
}