-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "@api.video/player-sdk",
"version": "1.2.33",
"description": "api.video player SDK",
"repository": {
"type": "git",
"url": "[email protected]:apivideo/player-sdk.git"
},
"author": "api.video <[email protected]> (https://api.video/)",
"license": "MIT",
"keywords": [
"video",
"player",
"apivideo"
],
"main": "dist/index.js",
"module": "dist/index.es.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 && rollup -c",
"test": "npm run tslint && mocha -r ts-node/register -r jsdom-global/register 'test/**/*.ts'",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@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",
"rollup": "^4.18.0",
"rollup-plugin-typescript2": "^0.36.0",
"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"
}
}