forked from podStation/podStation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.09 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
{
"name": "podstation_chrome_ext",
"version": "1.48.8",
"description": "podStation Podcast Player - Browser Extension",
"main": "podstation.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"angular": "^1.8.3",
"angular-drag-and-drop-lists": "2.1.0",
"angular-qrcode": "^7.2.0",
"angular-route": "^1.8.3",
"angular-sanitize": "^1.8.3",
"font-awesome": "4.7.0",
"jquery": "2.1.4",
"jsmediatags": "^3.9.0",
"ng-infinite-scroll": "^1.3.0"
},
"devDependencies": {
"angular-mocks": "^1.8.3",
"chrome-webstore-upload-cli": "^1.1.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"eslint": "^7.29.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"http-server": "^13.0.2",
"jasmine-core": "^3.1.0",
"json5": "^2.2.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-webpack": "^5.0.0",
"mini-css-extract-plugin": "^1.6.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.8.0"
},
"scripts": {
"start": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint \"src/**/*.js\"",
"test": "karma start --browsers ChromeHeadless",
"test-chrome-debugging": "karma start --browsers ChromeDebugging",
"test-chrome-single-run-no-sandbox": "karma start --single-run --browsers ChromeHeadlessNoSandbox",
"release": "webstore upload --source=build_output/output.zip --auto-publish",
"serve-test-feeds": "http-server docs/test-feeds"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/podStation/podStation.git"
},
"keywords": [
"rss",
"podcast",
"player"
],
"author": "Guilherme Dellagustin ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/podStation/podStation/issues"
},
"homepage": "https://github.com/podStation/podStation#readme"
}