forked from videogular/videogular2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (99 loc) · 2.92 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
{
"name": "videogular2",
"version": "0.0.0-semantically-released",
"description": "Videogular is a video application framework for desktop and mobile powered by Angular 2.0",
"main": "videogular.js",
"typings": "videogular.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/videogular/videogular2"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"es6-shim": "0.35.1",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.0-beta.12",
"zone.js": "0.6.26",
"systemjs": "0.19.40"
},
"devDependencies": {
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"es6-module-loader": "0.17.11",
"ghooks": "1.3.2",
"http-server": "0.9.0",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.0.2",
"karma-spec-reporter": "0.0.26",
"parallelshell": "2.0.0",
"remap-istanbul": "0.7.0",
"semantic-release": "4.3.5",
"systemjs-builder": "^0.15.13",
"typescript": "2.0.8",
"typings": "1.5.0",
"watch": "1.0.1"
},
"scripts": {
"typings": "typings",
"prebuild": "npm run clean && mkdir dist",
"tsc": "tsc",
"build": "tsc",
"postbuild": "node make.js && npm run test",
"prebuild:travis": "npm run typings install",
"build:travis": "tsc",
"postbuild:travis": "node make.js && npm run test",
"clean": "rm -rf dist && rm -rf ./src/**/*.js && rm -rf ./src/**/*.d.ts",
"precommit": "npm test",
"commit": "git-cz",
"coverage": "http-server -c-1 -o -s -p 9875 ./coverage",
"start": "parallelshell 'npm run watch:ts' 'npm run 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/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"watch:ts": "watch 'npm run build' src",
"parallelshell": "parallelshell"
},
"engines": {
"node": ">= 4"
},
"keywords": [
"video",
"player",
"framework",
"angular2",
"javascript"
],
"author": "Raúl Jiménez <[email protected]> (http://twofuckingdevelopers.com/)",
"contributors": [
{
"name": "Alberto García",
"email": "[email protected]"
},
{
"name": "Joan Llenas Masó",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/videogular/videogular2/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test"
}
},
"homepage": "http://videogular.com"
}