-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 2.08 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
{
"name": "@cycjimmy/h5-video-player",
"version": "2.1.0",
"description": "Browser full screen H5 video player",
"main": "build/h5-video-player.min.js",
"scripts": {
"test": "jest",
"start": "cross-env NODE_ENV=development webpack --display-modules --display-reasons --display-error-details --watch --color",
"build": "cross-env NODE_ENV=production webpack --progress --optimize-minimize && webpack --progress --display-modules --display-reasons --display-error-details --color",
"build:dev": "cross-env NODE_ENV=development webpack --display-modules --display-reasons --display-error-details --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cycjimmy/h5-video-player.git"
},
"keywords": [
"h5",
"video"
],
"author": "cycjimmy <[email protected]> (https://github.com/cycjimmy)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cycjimmy/h5-video-player/issues"
},
"homepage": "https://github.com/cycjimmy/h5-video-player#readme",
"dependencies": {
"@cycjimmy/awesome-js-funcs": "^1.1.1",
"@cycjimmy/sass-lib": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@cycjimmy/config-lib": "^1.2.0",
"autoprefixer": "^9.6.5",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"cz-conventional-changelog": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"regenerator-runtime": "^0.13.3",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.2.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}