webamp/package.json

113 lines
3.8 KiB
JSON
Raw Normal View History

{
2018-04-13 13:51:09 +00:00
"name": "webamp",
2018-04-14 17:34:04 +00:00
"version": "1.0.0",
"description": "Winamp 2 implemented in HTML5 and JavaScript",
2018-04-14 17:01:16 +00:00
"main": "built/webamp.bundle.js",
"files": [
2018-04-14 17:01:16 +00:00
"built/webamp.bundle.js",
"built/webamp.bundle.min.js"
],
"scripts": {
2018-05-25 19:36:00 +00:00
"lint": "jest --projects config/jest.eslint.js",
"build": "webpack --config=config/webpack.prod.js",
"build-library": "webpack --config=config/webpack.library.js",
"prepublishOnly": "npm run build-library",
2018-03-16 16:22:19 +00:00
"serve": "http-server ./built",
"start": "webpack-dev-server --config=config/webpack.dev.js",
2018-04-14 17:56:09 +00:00
"weight": "npm run build-library > /dev/null && gzip-size built/webamp.bundle.min.js",
2018-05-25 19:36:00 +00:00
"test": "jest --projects config/jest.unit.js config/jest.eslint.js",
"travis-tests": "npm run test && npm run build && npm run build-library",
2016-09-29 15:15:46 +00:00
"tdd": "jest --watch",
"format": "prettier --write experiments/**/*.js js/**/*.js css/**/*.css",
2018-03-16 08:39:49 +00:00
"build-skin": "rm skins/base-2.91.wsz && cd skins/base-2.91 && zip -x .* -x 'Skining Updates.txt' -r ../base-2.91.wsz .",
2018-04-01 20:03:09 +00:00
"build-skin-png": "rm skins/base-2.91-png.wsz && cd skins/base-2.91-png && zip -x .* -x 'Skining Updates.txt' -r ../base-2.91-png.wsz .",
"skin-info": "unzip -vl skins/base-2.91.wsz"
},
"repository": {
"type": "git",
2018-04-13 13:51:09 +00:00
"url": "git+https://github.com/captbaritone/webamp.git"
},
2018-03-16 08:39:49 +00:00
"keywords": [
"Winamp",
"HTML5",
"audio",
"web-audio-api"
],
"author": "Jordan Eldredge <jordan@jordaneldredge.com>",
"license": "MIT",
"bugs": {
2018-04-13 13:51:09 +00:00
"url": "https://github.com/captbaritone/webamp/issues"
},
2018-04-13 13:51:09 +00:00
"homepage": "https://github.com/captbaritone/webamp/",
"devDependencies": {
2018-05-23 19:10:55 +00:00
"babel": "^6.23.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.21.0",
2017-06-28 03:46:43 +00:00
"babel-loader": "^7.1.1",
2018-05-23 19:10:55 +00:00
"babel-plugin-remove-webpack": "^1.1.0",
2017-06-28 03:46:43 +00:00
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
2018-05-23 19:10:55 +00:00
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.22.0",
2018-05-23 19:10:55 +00:00
"babel-preset-env": "^1.6.1",
2018-04-03 00:01:02 +00:00
"babel-preset-react": "^6.24.1",
2018-05-23 19:10:55 +00:00
"babel-runtime": "^6.26.0",
"butterchurn": "^2.3.2",
"butterchurn-presets": "^2.3.2",
2017-01-14 05:11:12 +00:00
"canvas-mock": "0.0.0",
2018-05-23 19:10:55 +00:00
"cardinal-spline-js": "^2.3.6",
"classnames": "^2.2.5",
2018-03-17 04:55:29 +00:00
"copy-webpack-plugin": "^4.5.1",
2017-06-28 23:56:25 +00:00
"css-loader": "^0.28.4",
2018-01-26 03:53:26 +00:00
"eslint": "4.16.0",
2017-08-28 23:43:43 +00:00
"eslint-config-prettier": "^2.3.0",
2018-05-23 19:10:55 +00:00
"eslint-plugin-import": "^2.7.0",
2017-08-28 23:43:43 +00:00
"eslint-plugin-prettier": "^2.2.0",
2018-04-03 00:01:02 +00:00
"eslint-plugin-react": "^7.7.0",
2017-10-09 02:29:49 +00:00
"file-loader": "^1.1.5",
2018-04-06 05:45:47 +00:00
"git-revision-webpack-plugin": "^2.5.1",
"gzip-size-cli": "^2.0.0",
2018-05-23 19:10:55 +00:00
"html-webpack-inline-svg-plugin": "^1.2.4",
"html-webpack-plugin": "^3.0.6",
"http-server": "^0.11.1",
2018-05-23 19:10:55 +00:00
"invariant": "^2.2.3",
2018-05-24 17:45:42 +00:00
"jest": "^23.0.0",
2018-04-01 19:42:32 +00:00
"jest-runner-eslint": "^0.4.0",
2017-11-29 16:39:55 +00:00
"jsmediatags": "^3.8.1",
"jszip": "^3.1.3",
2018-05-28 22:56:18 +00:00
"prettier": "^1.13.0",
"prop-types": "^15.5.10",
2018-04-06 05:28:29 +00:00
"raven-for-redux": "^1.3.1",
2017-10-24 14:10:50 +00:00
"raven-js": "^3.19.1",
"rc-slider": "^8.1.5",
2018-04-18 04:06:03 +00:00
"react": "^16.3.2",
2018-04-03 00:01:02 +00:00
"react-dom": "^16.3.0",
"react-redux": "^5.0.7",
2018-05-23 19:10:55 +00:00
"react-test-renderer": "^16.3.0",
2018-04-18 04:05:06 +00:00
"redux": "^4.0.0",
2017-08-27 20:16:59 +00:00
"redux-devtools-extension": "^2.13.2",
2017-01-24 23:36:31 +00:00
"redux-thunk": "^2.1.0",
2017-10-24 00:59:39 +00:00
"reselect": "^3.0.1",
2018-04-27 20:46:38 +00:00
"screenfull": "^3.3.2",
2018-05-23 19:10:55 +00:00
"style-loader": "^0.19.1",
2018-03-10 04:32:55 +00:00
"tinyqueue": "^1.2.3",
2018-05-23 19:10:55 +00:00
"travis-weigh-in": "^1.0.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^0.6.2",
2017-09-17 04:50:32 +00:00
"webpack": "^3.6.0",
2018-05-23 19:10:55 +00:00
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.2",
"webpack-pwa-manifest": "^3.6.2",
2018-05-23 19:10:55 +00:00
"winamp-eqf": "^1.0.0",
"workbox-webpack-plugin": "^3.0.0"
2017-01-14 05:11:12 +00:00
},
"jest": {
2018-05-25 19:36:00 +00:00
"globalSetup": "jest-environment-puppeteer/setup",
"globalTeardown": "jest-environment-puppeteer/teardown",
2018-05-28 22:56:18 +00:00
"projects": [
"config/jest.*.js"
]
2018-05-25 19:36:00 +00:00
}
2017-06-28 23:58:33 +00:00
}