This repository was archived by the owner on Jul 26, 2020. It is now read-only.
forked from mspae/react-wavesurfer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.96 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.96 KB
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
{
"name": "react-wavesurfer",
"version": "0.8.2",
"description": "React component wrapper for wavesurfer.js",
"main": "lib/react-wavesurfer.min.js",
"scripts": {
"lint": "eslint ./src && jscs ./src",
"start": "webpack-dev-server --progress --colors --config ./build-config/dev.config.js --inline --hot",
"test": "./node_modules/.bin/jest",
"update-changelog": "github-changes -o mspae -r react-wavesurfer -a --order-semver",
"build:main": "./node_modules/.bin/webpack --progress --colors --config build-config/main.config.js",
"build:main.min": "./node_modules/.bin/webpack --progress --colors --optimize-minimize --optimize-occurence-order --optimize-dedupe --config build-config/main.config.min.js",
"build:plugins": "./node_modules/.bin/webpack --progress --colors --config build-config/plugins.config.js",
"build:plugins.min": "./node_modules/.bin/webpack --progress --colors --optimize-minimize --optimize-occurence-order --optimize-dedupe --config build-config/plugins.config.min.js",
"build": "npm-run-all --parallel build:main build:main.min build:plugins build:plugins.min update-changelog",
"prepublish": "npm run build"
},
"author": "Martin Spencer <mail@martinspencer.de>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mspae/react-wavesurfer"
},
"bugs": {
"url": "https://github.com/mspae/react-wavesurfer/issues"
},
"peerDependencies": {
"react": "^15.3.1",
"wavesurfer.js": "^1.1.11"
},
"devDependencies": {
"babel": "^6.5.x",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.x",
"babel-eslint": "^6.1.2",
"babel-jest": "^14.1.x",
"babel-loader": "^6.2.x",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"deep-assign": "^2.0.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "6.x.x",
"expose-loader": "^0.7.1",
"github-changes": "^1.0.4",
"imports-loader": "^0.6.5",
"jest-cli": "^14.1.0",
"jscs": "^3.0.7",
"jscs-jsx-rules": "0.0.1",
"jscs-loader": "^0.3.0",
"jsx-loader": "^0.13.2",
"npm-run-all": "^3.0.0",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-hot-loader": "^1.3.0",
"wavesurfer.js": "^1.1.11",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0"
},
"keywords": [
"react",
"reactjs",
"wavesurfer",
"audio",
"react-component",
"component"
],
"jest": {
"scriptPreprocessor": "./node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"./node_modules/react",
"./node_modules/react-dom",
"./node_modules/react-addons-test-utils",
"./node_modules/fbjs"
],
"moduleFileExtensions": [
"js",
"json"
],
"testDirectoryName": "test"
}
}