forked from captbaritone/webamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "winamp2-js",
"version": "0.0.1",
"description": "Winamp 2 implemented in HTML5 and JavaScript",
"main": "build/winamp.bundle.js",
"scripts": {
"lint": "eslint .",
"build": "webpack --config=webpack.production.config.js",
"build-library": "webpack --config=webpack.library.config.js",
"serve": "python -m SimpleHTTPServer 8000",
"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 < scripts/deploy.sh",
"revert": "ssh jordaneldredge.com sh < scripts/revert.sh",
"format": "prettier --write experiments/**/*.js js/**/*.js css/**/*.css webpack.config.js webpack.production.config.js",
"build-skin": "rm skins/base-2.91.wsz && cd skins/base-2.91 && zip -x .* -x 'Skining Updates.txt' -r ../base-2.91.wsz .",
"skin-info": "unzip -vl skins/base-2.91.wsz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/captbaritone/winamp2-js.git"
},
"keywords": [
"Winamp",
"HTML5",
"audio",
"web-audio-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": "4.16.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "7.5.1",
"file-loader": "^1.1.5",
"gzip-size-cli": "^2.0.0",
"jest-cli": "^22.0.3",
"react-test-renderer": "^16.2.0",
"style-loader": "^0.19.1",
"travis-weigh-in": "^1.0.2",
"url-loader": "^0.6.2",
"webpack-dev-server": "^2.7.1"
},
"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",
"jest": "^22.0.3",
"jsmediatags": "^3.8.1",
"jszip": "^3.1.3",
"prettier": "^1.10.2",
"prop-types": "^15.5.10",
"raven-js": "^3.19.1",
"rc-slider": "^8.1.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.5.2",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.1.0",
"reselect": "^3.0.1",
"webpack": "^3.6.0",
"winamp-eqf": "^1.0.0"
},
"jest": {
"testRegex": "\\.test\\.js$",
"moduleNameMapper": {
"\\.css$": "<rootDir>/js/__mocks__/styleMock.js",
"\\.wsz$": "<rootDir>/js/__mocks__/fileMock.js",
"\\.mp3$": "<rootDir>/js/__mocks__/fileMock.js"
},
"globals": {
"SENTRY_DSN": null
}
}
}