-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.07 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": "kokoro-player",
"description": "💘 A modern, light and elegant music player, powered with web component.",
"main": "dist/kokoro-player.min.js",
"module": "src/index.js",
"version": "1.0.2",
"scripts": {
"start": "webpack-dev-server --env.mode development",
"develop": "webpack-dev-server --env.mode development",
"build": "webpack --env.mode production && webpack --env.mode production --config=webpack.dist.config.js",
"version": "webpack --env.mode production --config=webpack.dist.config.js",
"lint": "eslint --fix .",
"gitadd": "git add -A"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cool2645/kokoro-player.git"
},
"keywords": [
"music-player"
],
"author": "rikakomoe",
"license": "MIT",
"bugs": {
"url": "https://github.com/cool2645/kokoro-player/issues"
},
"homepage": "https://github.com/cool2645/kokoro-player#readme",
"dependencies": {
"kokoro": "^1.0.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2",
"lrc-kit": "^1.1.1",
"wc-context": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@purtuga/web-components-polyfill-webpack-plugin": "^2.1.0",
"@vaadin/router": "^1.4.3",
"@webcomponents/webcomponentsjs": "^2.0.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^5.0.1",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^3.2.0",
"pre-commit": "^1.2.2",
"prismjs": "^1.17.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "4",
"url-loader": "^4.1.1",
"webpack": "^4.41.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"pre-commit": [
"lint",
"gitadd"
],
"browserslist": [
"last 2 version"
]
}