webamp/package.json

80 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "winamp2-js",
"version": "1.0.0",
"description": "Winamp 2 implemented in HTML5 and JavaScript",
"main": "index.html",
"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",
"weight": "npm run build && gzip-size built/winamp.js | pretty-bytes",
"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"
},
"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-jest": "^19.0.0",
"babel-loader": "^6.2.9",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
2017-01-14 05:11:12 +00:00
"canvas-mock": "0.0.0",
"css-loader": "^0.28.0",
"eslint": "3.18.0",
2017-03-20 23:14:15 +00:00
"eslint-config-prettier": "^1.5.0",
"eslint-plugin-react": "6.10.3",
"file-loader": "^0.10.0",
"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",
"pretty-bytes-cli": "^2.0.0",
2017-01-14 05:11:12 +00:00
"react-test-renderer": "^15.4.2",
"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",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-react-jsx": "^6.8.0",
"cardinal-spline-js": "^2.3.6",
"classnames": "^2.2.5",
"jszip": "^2.6.0",
"rc-slider": "^6.3.1",
"react": "^15.3.1",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"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"
}
}
}