forked from wenliangdai/react-audioplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.89 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
{
"name": "react-audioplayer",
"version": "0.3.1",
"description": "A customizable html5 audio player for React.js",
"main": "lib/index.js",
"repository": {
"url": "https://github.com/wenliangdai/react-audioplayer.git",
"type": "git"
},
"peerDependencies": {
"react": ">=0.13.2 || ^0.14 || ^15.0.0",
"react-dom": ">=0.13.2 || ^0.14 || ^15.0.0",
"react-motion": "^0.4.0"
},
"jest": {
"browser": true,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"scripts": {
"test": "jest --verbose",
"test-s": "jest --silent",
"start": "NODE_ENV=development webpack-dev-server --config ./webpack/webpack.config.babel.js --progress",
"prebuild": "yarn run clean",
"build": "NODE_ENV=production webpack --config ./webpack/webpack.config.babel.js --progress --display-modules",
"clean": "rimraf ./build && mkdir build",
"lint": "./node_modules/.bin/eslint 'src/**/*.@(js|jsx)'"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"css-loader": "^0.26.1",
"doiuse": "^2.5.0",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^18.1.0",
"postcss-clean": "^1.0.2",
"postcss-cssnext": "^2.9.0",
"postcss-loader": "^1.3.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"stylelint": "^7.8.0",
"stylelint-config-standard": "^16.0.0",
"uglify-js": "^2.8.12",
"uglifyjs-webpack-plugin": "^0.3.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-merge": "^2.6.1"
},
"dependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-motion": "^0.4.7"
},
"author": "Wenliang Dai <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"component",
"react-component",
"media",
"audio",
"player",
"comment"
]
}