-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
95 lines (95 loc) · 3.41 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
{
"name": "muse-player",
"version": "5.7.5",
"description": "Just a simple and dilligent HTML5 Audio Player written in React.",
"main": "dist/assets/muse-player.js",
"scripts": {
"start": "npm run serve",
"test": "karma start",
"test:watch": "karma start --autoWatch=true --singleRun=false",
"posttest": "npm run lint",
"serve": "webpack-dev-server --mode=development --config=webpack.config.js --progress --host 0.0.0.0 --disableHostCheck true",
"serve:dist": "webpack-dev-server --mode=production --config=webpack.config.js --progress --host 0.0.0.0 --disableHostCheck true",
"dist": "npm run copy & webpack --mode=production --progress",
"lint": "eslint ./src",
"copy": "copyfiles -f ./src/index.html ./src/favicon.ico ./src/example.js ./dist",
"clean": "rimraf dist/*",
"report-coverage": "cat ./coverage/report-lcovonly.txt | coveralls",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags"
},
"repository": "https://github.com/moefront/muse",
"keywords": [
"audio player",
"HTML5",
"lyric",
"muse",
"ymplayer",
"redux",
"mobx",
"react"
],
"author": "MoeFront Studio",
"organization": "MoeFront Studio",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.3.14",
"bower-webpack-plugin": "^0.1.9",
"chai": "^4.1.1",
"copyfiles": "^2.1.0",
"coveralls": "^3.0.0",
"css-loader": "^2.0.2",
"eslint": "^5.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^3.0.1",
"glob": "^7.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.0",
"karma-mocha-reporter": "^2.2.4",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^3.0.5",
"minimist": "^1.2.0",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"mocha": "^5.2.0",
"null-loader": "^0.1.1",
"react-addons-test-utils": "^15.6.2",
"react-hot-loader": "^4.6.3",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-loader": "^5.3.2",
"tslint": "^5.7.0",
"tslint-loader": "^3.5.3",
"typescript": "^3.2.2",
"url-loader": "^1.1.2",
"webpack": "^4.12.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@types/node": "^10.12.18",
"@types/react": "^16.0.10",
"@types/react-dom": "^16.0.1",
"anujs": "^1.4.4",
"core-js": "^2.0.0",
"honoka": "^0.4.6",
"normalize.css": "^8.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}