mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
In anticipation of supporting the ability to drag the marquee contents, we're moving to offsetting by pixels rather than actually modifying the text.
66 lines
1.8 KiB
JSON
66 lines
1.8 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",
|
|
"deploy": "ssh jordaneldredge.com sh < deploy.sh"
|
|
},
|
|
"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": "^14.0.0",
|
|
"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": "2.*",
|
|
"eslint-plugin-react": "^5.2.2",
|
|
"file-loader": "^0.9.0",
|
|
"gzip-size-cli": "^1.0.0",
|
|
"jest-cli": "^14.0.0",
|
|
"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",
|
|
"classnames": "^2.2.5",
|
|
"jszip": "^2.6.0",
|
|
"react": "^15.2.0",
|
|
"react-dom": "^15.2.0",
|
|
"react-redux": "^4.4.5",
|
|
"redux": "^3.5.2",
|
|
"redux-thunk": "^2.1.0"
|
|
},
|
|
"jest": {
|
|
"unmockedModulePathPatterns": [
|
|
"<rootDir>/node_modules/react/",
|
|
"<rootDir>/node_modules/react-redux/"
|
|
]
|
|
}
|
|
}
|