-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@docomodigital/videoplayer",
"version": "3.3.3",
"description": "Video player integrated with Flowplayer/YouTube/Vimeo/DailyMotion/iFrame",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"umd/"
],
"license": "MIT",
"scripts": {
"build:cjs": "cross-env NODE_ENV=production BABEL_ENV=cjs babel --config-file ./babel.config.js ./src --out-dir ./dist",
"build:esm": "cross-env NODE_ENV=production BABEL_ENV=esm babel --config-file ./babel.config.js ./src --out-dir ./dist/esm",
"build:umd": "cross-env NODE_ENV=production BABEL_ENV=production-umd rollup -c rollup.config.js ",
"build": "rimraf ./dist ./umd && yarn build:cjs && yarn build:esm && yarn build:umd",
"doc": "rimraf ./docs/${npm_package_version} && jsdoc -c .jsdoc.json -d ./docs/${npm_package_version}/",
"doc:latest": "rimraf ./docs/latest && jsdoc -c .jsdoc.json -d ./docs/latest/",
"doc:open": "npm run doc && open docs/${npm_package_version}/index.html",
"lint": "eslint \"src/**\"",
"start": "cross-env NODE_ENV=development webpack-dev-server --open",
"test": "jest --config jest.config.json",
"test:watch": "npm run test -- --watchAll",
"test:open": "npm run test && open coverage/lcov-report/index.html",
"test:coveralls": "npm run test -- --coverageReporters=text-lcov | coveralls",
"preversion": "npm run lint && npm run test",
"version": "npm run build && npm run doc && npm run doc:latest",
"prepublish": "rm -rf dist/; yarn build",
"postversion": "git add docs/ && git commit -am \"Documentation ${npm_package_version}\" && git push --follow-tags"
},
"dependencies": {
"@vimeo/player": "^2.6.7",
"youtube-player": "^5.5.2"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"coveralls": "^3.0.2",
"cross-env": "^6.0.0",
"css-loader": "^3.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.17.2",
"file-loader": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"jsdom": "^12.0.0",
"minami": "^1.2.3",
"mini-css-extract-plugin": "^0.4.4",
"rimraf": "^2.6.2",
"rollup": "^1.25.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-ignore": "^1.0.5",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-strip": "^1.2.2",
"rollup-plugin-terser": "^5.1.2",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"url-loader": "^3.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}