2015-12-13 23:45:29 +00:00
|
|
|
{
|
|
|
|
"name": "winamp2-js",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Winamp 2 implemented in HTML5 and JavaScript",
|
2016-05-03 03:26:25 +00:00
|
|
|
"main": "index.html",
|
2015-12-13 23:45:29 +00:00
|
|
|
"scripts": {
|
2017-01-18 01:51:21 +00:00
|
|
|
"lint": "eslint .",
|
2016-08-02 04:57:04 +00:00
|
|
|
"build": "webpack --config=webpack.production.config.js",
|
2017-03-24 17:52:59 +00:00
|
|
|
"start": "webpack-dev-server",
|
2016-07-22 15:01:51 +00:00
|
|
|
"weight": "npm run build && gzip-size built/winamp.js | pretty-bytes",
|
2017-01-17 23:18:40 +00:00
|
|
|
"test": "jest --coverage",
|
2017-01-14 05:53:34 +00:00
|
|
|
"travis-tests": "jest --coverage && npm run lint && npm run build",
|
2016-09-29 15:15:46 +00:00
|
|
|
"tdd": "jest --watch",
|
2016-11-29 07:15:31 +00:00
|
|
|
"deploy": "ssh jordaneldredge.com sh < deploy.sh",
|
2017-03-20 23:14:15 +00:00
|
|
|
"revert": "ssh jordaneldredge.com sh < revert.sh",
|
|
|
|
"format": "prettier --write js/**/*.js webpack.config.js webpack.production.config.js"
|
2015-12-13 23:45:29 +00:00
|
|
|
},
|
|
|
|
"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": {
|
2016-08-31 23:38:57 +00:00
|
|
|
"babel-cli": "^6.14.0",
|
2016-12-16 22:13:32 +00:00
|
|
|
"babel-core": "^6.21.0",
|
2017-02-21 09:36:33 +00:00
|
|
|
"babel-jest": "^19.0.0",
|
2016-12-07 17:17:55 +00:00
|
|
|
"babel-loader": "^6.2.9",
|
2017-01-28 17:10:48 +00:00
|
|
|
"babel-polyfill": "^6.22.0",
|
2016-08-25 09:09:12 +00:00
|
|
|
"babel-preset-es2015": "^6.14.0",
|
2016-07-07 01:06:43 +00:00
|
|
|
"babel-preset-react": "^6.11.1",
|
2017-01-14 05:11:12 +00:00
|
|
|
"canvas-mock": "0.0.0",
|
2017-03-30 06:47:10 +00:00
|
|
|
"css-loader": "^0.28.0",
|
2017-03-17 21:56:29 +00:00
|
|
|
"eslint": "3.18.0",
|
2017-03-20 23:14:15 +00:00
|
|
|
"eslint-config-prettier": "^1.5.0",
|
2017-03-20 21:57:28 +00:00
|
|
|
"eslint-plugin-react": "6.10.3",
|
2017-01-28 09:27:59 +00:00
|
|
|
"file-loader": "^0.10.0",
|
2017-02-03 16:31:09 +00:00
|
|
|
"gzip-size-cli": "^2.0.0",
|
2017-03-20 17:46:46 +00:00
|
|
|
"jest-cli": "^19.0.2",
|
2017-03-20 23:14:15 +00:00
|
|
|
"prettier": "^0.22.0",
|
2016-08-31 23:32:56 +00:00
|
|
|
"pretty-bytes-cli": "^2.0.0",
|
2017-01-14 05:11:12 +00:00
|
|
|
"react-test-renderer": "^15.4.2",
|
2017-03-28 13:33:45 +00:00
|
|
|
"style-loader": "^0.16.1",
|
2017-01-14 06:00:13 +00:00
|
|
|
"travis-weigh-in": "^1.0.2",
|
2016-07-12 16:55:35 +00:00
|
|
|
"url-loader": "^0.5.7",
|
2017-01-24 23:36:31 +00:00
|
|
|
"webpack": "^2.2.0",
|
2017-02-03 15:16:57 +00:00
|
|
|
"webpack-dev-server": "^2.3.0"
|
2016-05-03 03:26:25 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-12-09 01:21:29 +00:00
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.20.2",
|
2016-07-07 01:06:43 +00:00
|
|
|
"babel-plugin-transform-react-jsx": "^6.8.0",
|
2016-08-30 03:17:38 +00:00
|
|
|
"cardinal-spline-js": "^2.3.6",
|
2016-07-28 06:17:32 +00:00
|
|
|
"classnames": "^2.2.5",
|
2016-07-07 01:06:43 +00:00
|
|
|
"jszip": "^2.6.0",
|
2017-03-24 17:34:53 +00:00
|
|
|
"rc-slider": "^6.3.1",
|
2016-08-31 23:48:01 +00:00
|
|
|
"react": "^15.3.1",
|
2017-01-11 04:32:36 +00:00
|
|
|
"react-dom": "^15.4.2",
|
2017-01-11 01:50:32 +00:00
|
|
|
"react-redux": "^5.0.2",
|
2016-07-28 06:17:32 +00:00
|
|
|
"redux": "^3.5.2",
|
2017-01-24 23:36:31 +00:00
|
|
|
"redux-thunk": "^2.1.0",
|
|
|
|
"webpack": "^2.2.0"
|
2017-01-14 05:11:12 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
2017-01-17 23:27:23 +00:00
|
|
|
"testRegex": "\\.test\\.js$",
|
2017-01-14 05:11:12 +00:00
|
|
|
"moduleNameMapper": {
|
|
|
|
"\\.css$": "<rootDir>/js/__mocks__/styleMock.js"
|
|
|
|
}
|
2015-12-13 23:45:29 +00:00
|
|
|
}
|
|
|
|
}
|