mirror of
https://github.com/captbaritone/webamp
synced 2024-11-23 16:49:41 +00:00
81 lines
2.6 KiB
JSON
81 lines
2.6 KiB
JSON
{
|
|
"name": "winamp2-js",
|
|
"version": "1.0.0",
|
|
"description": "Winamp 2 implemented in HTML5 and JavaScript",
|
|
"main": "index.html",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"build": "webpack --config=webpack.production.config.js",
|
|
"start": "webpack-dev-server",
|
|
"weight": "npm run build && gzip-size built/winamp.js",
|
|
"test": "jest --coverage",
|
|
"travis-tests": "jest --coverage && npm run lint && npm run build",
|
|
"tdd": "jest --watch",
|
|
"deploy": "ssh jordaneldredge.com HASH=$HASH sh < deploy.sh",
|
|
"revert": "ssh jordaneldredge.com sh < revert.sh",
|
|
"format":
|
|
"prettier --write js/**/*.js css/**/*.css webpack.config.js webpack.production.config.js"
|
|
},
|
|
"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.14.0",
|
|
"babel-core": "^6.21.0",
|
|
"babel-loader": "^7.1.1",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
|
|
"babel-polyfill": "^6.22.0",
|
|
"babel-preset-react": "^6.11.1",
|
|
"canvas-mock": "0.0.0",
|
|
"css-loader": "^0.28.4",
|
|
"eslint": "3.19.0",
|
|
"eslint-config-prettier": "^2.3.0",
|
|
"eslint-plugin-prettier": "^2.2.0",
|
|
"eslint-plugin-react": "6.10.3",
|
|
"file-loader": "^0.11.0",
|
|
"gzip-size-cli": "^2.0.0",
|
|
"jest-cli": "^20.0.4",
|
|
"react-test-renderer": "^15.4.2",
|
|
"style-loader": "^0.16.1",
|
|
"travis-weigh-in": "^1.0.2",
|
|
"url-loader": "^0.5.7",
|
|
"webpack-dev-server": "^2.5.0"
|
|
},
|
|
"cdnUrl": "https://d38dnrh1liu4f5.cloudfront.net/projects/winamp2-js/",
|
|
"dependencies": {
|
|
"babel": "^6.23.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.20.2",
|
|
"babel-plugin-transform-react-jsx": "^6.8.0",
|
|
"babel-preset-env": "^1.5.2",
|
|
"cardinal-spline-js": "^2.3.6",
|
|
"classnames": "^2.2.5",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"jszip": "^3.1.3",
|
|
"prettier": "^1.6.0",
|
|
"prop-types": "^15.5.10",
|
|
"rc-slider": "^8.1.5",
|
|
"react": "^15.3.1",
|
|
"react-dom": "^15.4.2",
|
|
"react-redux": "^5.0.2",
|
|
"redux": "^3.5.2",
|
|
"redux-devtools-extension": "^2.13.2",
|
|
"redux-thunk": "^2.1.0",
|
|
"webpack": "^3.0.0",
|
|
"winamp-eqf": "^1.0.0"
|
|
},
|
|
"jest": {
|
|
"testRegex": "\\.test\\.js$",
|
|
"moduleNameMapper": {
|
|
"\\.css$": "<rootDir>/js/__mocks__/styleMock.js"
|
|
}
|
|
}
|
|
}
|