mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "winamp2-js",
|
|
"version": "1.0.0",
|
|
"description": "Winamp 2 implemented in HTML5 and JavaScript",
|
|
"main": "index.html",
|
|
"scripts": {
|
|
"lint": "eslint js/*.js js/*.jsx",
|
|
"build": "webpack --optimize-minimize",
|
|
"serve": "webpack-dev-server",
|
|
"weight": "npm run build && gzip-size built/winamp.js | pretty-bytes",
|
|
"test": "jest && npm run lint"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/captbaritone/winamp2-js.git"
|
|
},
|
|
"keywords": [
|
|
"Winamp",
|
|
"HTML5",
|
|
"audio",
|
|
"web-auido-api"
|
|
],
|
|
"author": "Jordan Eldredge <jordan@jordaneldredge.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/captbaritone/winamp2-js/issues"
|
|
},
|
|
"homepage": "https://github.com/captbaritone/winamp2-js#readme",
|
|
"devDependencies": {
|
|
"babel-cli": "^6.10.1",
|
|
"babel-core": "^6.10.4",
|
|
"babel-jest": "^13.2.2",
|
|
"babel-loader": "^6.2.4",
|
|
"babel-polyfill": "^6.9.1",
|
|
"babel-preset-es2015": "^6.9.0",
|
|
"babel-preset-react": "^6.11.1",
|
|
"css-loader": "^0.23.1",
|
|
"eslint": "3.1.1",
|
|
"eslint-plugin-react": "^5.2.2",
|
|
"file-loader": "^0.9.0",
|
|
"gzip-size-cli": "^1.0.0",
|
|
"jest-cli": "^13.2.3",
|
|
"pretty-bytes-cli": "^1.0.0",
|
|
"style-loader": "^0.13.1",
|
|
"url-loader": "^0.5.7",
|
|
"webpack": "^1.13.0"
|
|
},
|
|
"dependencies": {
|
|
"babel-plugin-transform-object-rest-spread": "^6.8.0",
|
|
"babel-plugin-transform-react-jsx": "^6.8.0",
|
|
"jszip": "^3.0.0",
|
|
"react": "^15.2.0",
|
|
"react-dom": "^15.2.0",
|
|
"react-redux": "^4.4.5",
|
|
"redux": "^3.5.2"
|
|
}
|
|
}
|