-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
138 lines (138 loc) · 3.83 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "videogular2",
"version": "0.0.0-semantically-released",
"description": "Videogular is a video application framework for desktop and mobile powered by Angular",
"repository": {
"type": "git",
"url": "https://github.com/videogular/videogular2"
},
"peerDependencies": {
"@angular/core": "^8.0.0",
"rxjs": "^6.3.0"
},
"devDependencies": {
"@angular/animations": "^8.0.0",
"@angular/cli": "8.0.1",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/platform-server": "^8.0.0",
"@types/bluebird": "^3.5.25",
"@types/core-js": "0.9.46",
"@types/jasmine": "^3.3.1",
"@types/node": "10.12.12",
"codelyzer": "5.1.0",
"commitizen": "4.1.2",
"core-js": "^2.6.0",
"cz-conventional-changelog": "2.0.0",
"es-module-loader": "2.3.0",
"http-server": "0.12.3",
"husky": "^2.4.0",
"jasmine-core": "^3.3.0",
"karma": "5.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-spec-reporter": "^0.0.32",
"npm-run-all": "4.1.5",
"reflect-metadata": "^0.1.10",
"remap-istanbul": "0.9.5",
"rimraf": "2.6.1",
"rxjs": "6.5.2",
"semantic-release": "17.0.7",
"systemjs": "^0.20.19",
"tslint": "5.17.0",
"typescript": "~3.5.3",
"validate-commit-msg": "2.12.1",
"watch": "1.0.2",
"zone.js": "0.9.1"
},
"scripts": {
"prebuild": "npm run clean",
"build": "ngc",
"postbuild": "npm test",
"build:travis": "ngc",
"postbuild:travis": "npm run test",
"clean": "rimraf -rf ./src/**/*.js && rimraf -rf ./src/**/*.d.ts && rimraf -rf ./compiled",
"commit": "git-cz",
"coverage": "http-server -c-1 -o -s -p 9875 ./coverage",
"start": "run-p \"watch:ts\" \"start:coverage-server\"",
"start:coverage-server": "http-server -c-1 -o -p 9875 ./coverage",
"test": "karma start karma.conf.js",
"posttest": "remap-istanbul -i ./coverage/coverage-final.json -o coverage -t html",
"report-coverage": "cat ./coverage/coverage-final.json | ./node_modules/.bin/remap-istanbul -o coverage-remapped.json",
"semantic-release": "semantic-release && npm publish && semantic-release post",
"watch:ts": "watch \"npm run build\" src",
"lint": "tslint -p tsconfig.json -c tslint.json --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "validate-commit-msg"
}
},
"keywords": [
"video",
"player",
"framework",
"angular2",
"javascript"
],
"author": "Raúl Jiménez <[email protected]>",
"contributors": [
{
"name": "Alberto García",
"email": "[email protected]"
},
{
"name": "Joan Llenas Masó",
"email": "[email protected]"
},
{
"name": "Jaime 'Gondola' Oliveira",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/videogular/videogular2/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"ci"
],
"scope": {
"required": true,
"allowed": [
"*"
],
"validate": true,
"multiple": false
},
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": "",
"autoFix": false
}
},
"homepage": "http://videogular.com"
}