-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "@api.video/player-sdk",
"version": "1.2.26",
"description": "api.video player SDK",
"repository": {
"type": "git",
"url": "git@github.com:apivideo/player-sdk.git"
},
"author": "api.video <ecosystem-team@api.video> (https://api.video/)",
"license": "MIT",
"keywords": [
"video",
"player",
"apivideo"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tslint": "tslint --project .",
"dev": "webpack-dev-server --host 0.0.0.0 --open --mode development",
"build": "npm run tslint && webpack --mode production",
"test": "npm run tslint && mocha -r ts-node/register -r jsdom-global/register 'test/**/*.ts'",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/jsdom": "^16.2.6",
"@types/mocha": "^9.0.0",
"chai": "^4.2.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mocha": "^9.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.0.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"core-js": "^3.8.3",
"url-polyfill": "^1.1.12"
}
}