This repository has been archived by the owner on May 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
185 lines (185 loc) · 6.27 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
{
"name": "@podlove/podlove-web-player",
"title": "Podlove Web Player",
"description": "a Podcast-optimized, HTML5-based video and audio player with Flash fallback. It can be used as a WordPress plugin or within a static HTML/JavaScript context.",
"version": "4.2.4",
"homepage": "https://github.com/podlove/podlove-web-player",
"contributors": [],
"repository": "https://github.com/podlove/podlove-web-player.git",
"bugs": {
"url": "https://github.com/podlove/podlove-web-player/issues"
},
"license": "BSD-2-Clause",
"keywords": [
"podcasting",
"podlove",
"html5audio",
"audio",
"video",
"podcast",
"player"
],
"scripts": {
"dist:clean": "mkdir -p dist && rm -rf dist/*",
"docs:dev": "vuepress dev docs",
"docs:prod": "vuepress build docs --dest dist/ && npm run build",
"webpack:dev": "webpack-dev-server --progress --config build/webpack.config.dev.js",
"webpack:build": "webpack --config build/webpack.config.prod.js",
"webpack:cdn": "webpack --config build/webpack.config.cdn.js",
"build": "npm run webpack:build && npm run subfont",
"now-build": "npm run docs:prod && npm run subfont",
"now-start": "serve dist/",
"build:cdn": "npm run webpack:cdn && npm run subfont",
"docs": "node scripts/dev.js",
"dev": "npm run webpack:dev",
"test": "npm run test:prepare && NODE_ENV=AVA nyc ava && nyc report --reporter=html",
"test:ci": "npm run test:prepare && NODE_ENV=AVA nyc ava --tap | tap-xunit > reports/ava.xml && nyc report --reporter=lcov",
"test:dev": "NODE_ENV=AVA ava --watch --fail-fast",
"test:prepare": "rm -rf reports coverage && mkdir -p reports coverage",
"lint:commit": "conventional-changelog-lint",
"lint:standard": "standard --parser babel-eslint --verbose --plugin html 'src/**/*.{js,vue}'",
"lint": "npm run lint:standard | snazzy",
"lint:ci": "npm run test:prepare && npm run lint:standard | standard-reporter --checkstyle > reports/checkstyle.xml",
"commit": "git-cz",
"deploy:gh-pages": "scripts/deploy-ghpages.sh dist",
"deploy:cdn": "rsync -rvt --chmod=D2755,F644 dist/ podlove@rsync.keycdn.com:applications/web-player/4.x/",
"deploy:release": "scripts/deploy-release.sh",
"deploy:surge": "surge --project ./dist --domain podlove-player.surge.sh",
"changelog": "standard-changelog",
"cypress:assets": "npm run dist:clean && cp -R cypress/testbed/* dist/",
"cypress:dev": "npm run cypress:assets && cypress open --config baseUrl=http://localhost:9002",
"cypress:ci": "npm run test:prepare && cypress run --record --key 54ef8855-9428-4b03-92db-fe0d853c4c41 --reporter junit --reporter-options 'mochaFile=reports/junit.xml'",
"cypress:server": "http-server -p 8080 dist/ > http.log 2>&1 &",
"test:integration": "cypress install && npm run cypress:assets && npm run build && npm run cypress:server && npm run cypress:ci",
"subfont": "subfont --recursive --in-place dist"
},
"files": [
"dist/"
],
"dependencies": {
"@podlove/html5-audio-driver": "1.3.7",
"babel-polyfill": "6.26.0",
"color": "3.1.0",
"copy-to-clipboard": "3.0.8",
"detect-browser": "3.0.1",
"dompurify": "^1.0.7",
"hashcode": "1.0.3",
"iframe-resizer": "3.6.3",
"keyboardjs": "2.4.1",
"lodash": "4.17.11",
"mobile-detect": "1.4.3",
"normalize.css": "7.0.0",
"query-string": "6.2.0",
"redux": "3.7.2",
"redux-actions": "2.6.4",
"redux-vuex": "^0.1.1",
"serve": "^10.0.0",
"superagent": "3.8.3",
"v-tooltip": "2.0.0-rc.33",
"vue": "2.5.17",
"vue-i18n": "8.3.0",
"vuepress-theme-millidocs": "^0.5.1"
},
"devDependencies": {
"autoprefixer": "^9.1.0",
"ava": "0.25.0",
"babel-core": "6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "7.1.5",
"babel-plugin-add-module-exports": "1.0.0",
"babel-plugin-es6-promise": "^1.1.1",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-plugin-webpack-alias": "2.1.2",
"babel-preset-bluebird": "1.0.1",
"babel-preset-env": "1.6.1",
"babel-register": "6.26.0",
"browser-env": "3.2.4",
"commitizen": "3.0.3",
"compression-webpack-plugin": "2.0.0",
"concurrently": "^4.0.0",
"conventional-changelog-lint": "2.1.1",
"cross-env": "5.2.0",
"css-loader": "1.0.1",
"cypress": "3.1.0",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.0.1",
"eslint-plugin-html": "4.0.6",
"express": "^4.16.3",
"express-http-proxy": "^1.2.0",
"file-loader": "^2.0.0",
"generate-changelog": "1.7.1",
"got": "^9.0.0",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"inject-loader": "4.0.0",
"jsoneditor": "^5.23.1",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "4.14.1",
"nyc": "12.0.2",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-clean": "^1.1.0",
"postcss-loader": "^3.0.0",
"raw-loader": "0.5.1",
"sass-loader": "7.1.0",
"semver": "5.6.0",
"sinon": "6.0.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"standard-changelog": "2.0.6",
"standard-reporter": "^1.0.5",
"subfont": "^3.6.1",
"superagent-nock": "0.4.0",
"surge": "0.20.0",
"tap-xunit": "^2.3.0",
"to-string-loader": "^1.1.5",
"transform-runtime": "0.0.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue-color": "^2.6.0",
"vue-loader": "15.4.2",
"vue-template-compiler": "2.5.17",
"vuepress": "^0.14.1",
"webpack": "4.25.1",
"webpack-auto-inject-version": "^1.1.0",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "^3.0.2",
"webpack-dev-server": "^3.1.3",
"webpack-jarvis": "0.3.1"
},
"engines": {
"node": ">=8.0.0"
},
"ava": {
"files": [
"src/**/*.test.js"
],
"source": [
"src/**/*.{js}"
],
"concurrency": 5,
"failFast": false,
"tap": false,
"powerAssert": true,
"require": [
"babel-core/register",
"babel-register"
],
"babel": {
"babelrc": true
}
},
"nyc": {
"exclude": [
"**/*.test.js",
"build"
]
},
"main": "index.js",
"author": "Alexander Heimbuch <github@heimbu.ch>",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}