-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.67 KB
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
{
"name": "@deepeshgupta/video-player",
"version": "0.0.3",
"description": "a frontend optimized video player",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"start": "NODE_ENV=production npm-run-all build",
"dev": "NODE_ENV=development npm-run-all build:watch",
"run-test": "node ./test/index.js",
"test": "npm-run-all build run-test",
"prepublish": "npm-run-all build",
"publish": "npm publish --access=public",
"postpublish": "",
"publisher": "npm-run-all prepublish publish postpublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrinceDeepu/video-player.git"
},
"keywords": [
"videoplayer",
"frontendvideoplayer",
"webvideoplayer"
],
"author": "Deepesh Gupta",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrinceDeepu/video-player/issues"
},
"homepage": "https://github.com/PrinceDeepu/video-player#readme",
"devDependencies": {
"@types/node": "^18.0.3",
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"css-loader": "^6.7.1",
"express": "^4.18.1",
"ip": "^1.1.8",
"is-reachable": "^5.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.7.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}