-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.02 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
{
"name": "kaltura-ott-typescript-client",
"private": true,
"version": "9.6.0-0",
"description": "Kaltura OTT Typescript client",
"keywords": [
"Kaltura"
],
"license": "AGPL-3.0",
"author": "https://github.com/kaltura-ng/graphs/contributors",
"contributors": [
{
"name": "Eran Sakal",
"email": "[email protected]"
},
{
"name": "Amir Chervinsky",
"email": "[email protected]"
}
],
"scripts": {
"build": "gulp build",
"build:prod": "gulp build --production",
"build:npm": "gulp build --public",
"lint": "tslint src/**/*.ts",
"watch": "gulp watch",
"deploy": "rm -rf dist && npm run build && cd dist && npm pack && npm link",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/kaltura/KalturaOttGeneratedAPIClientsTypescript.git"
},
"bugs": {
"url": "https://github.com/kaltura/KalturaOttGeneratedAPIClientsTypescript/issues"
},
"main": "./index.js",
"dependencies": {
"@types/node": "^8.0.47",
"tslib": "^1.5.0"
},
"devDependencies": {
"@types/core-js": "^0.9.37",
"@types/jest": "^21.1.5",
"@types/jquery": "^2.0.40",
"@types/ramda": "0.0.3",
"awesome-typescript-loader": "^5.2.1",
"core-js": "2.4.1",
"fs-extra": "^7.0.0",
"gulp": "^4.0.0",
"gulp-add-src": "^1.0.0",
"gulp-json-editor": "^2.2.1",
"gulp-load-plugins": "^1.4.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "~7.1.0",
"gulp-typescript": "^5.0.0-alpha.3",
"gulp-util": "^3.0.7",
"jest": "^21.2.1",
"merge2": "^1.0.2",
"rimraf": "^2.5.1",
"ts-jest": "^21.2.4",
"tslint": "4.3.1",
"tslint-loader": "3.2.1",
"typescript": "^2.4.0",
"yargs": "^5.0.0"
},
"engines": {
"node": ">= 7.0.0",
"npm": ">= 5.0.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/tests/*.spec.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}