-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "media-player",
"version": "1.0.0",
"description": "Sample JS Media Player",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --open",
"unit": "karma start karma.conf.js ",
"test": "npm run unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grozevg/media-player-comp.git"
},
"keywords": [
"Media Player",
"Web Component",
"Javascript"
],
"author": "Galin Grozev",
"license": "free",
"homepage": "https://github.com/grozevg/media-player-comp#readme",
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.13.0",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.3.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-webpack": "^3.0.5",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14"
}
}