-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.45 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
{
"name": "react-designable-audio-player",
"version": "1.0.0",
"description": "An audio player library for React that lets you use your own UI component",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src tests",
"build:lib": "babel src --out-dir lib",
"build:examples": "cd examples; npm uninstall react-designable-audio-player; npm install react-designable-audio-player; npm run build",
"build:umd": "webpack src/index.js --config webpack.config.development.babel.js",
"build:umd:min": "webpack src/index.js --config webpack.config.production.babel.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"publish:examples": "git subtree push --prefix examples/build origin gh-pages",
"prepublish": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"stats": "webpack --config webpack.config.production.babel.js --profile --json > stats.json"
},
"author": "Ken Fehling",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kenfehling/react-designable-audio-player"
},
"bugs": "https://github.com/kenfehling/react-designable-audio-player/issues",
"files": [
"dist",
"lib",
"src"
],
"keywords": [
"react",
"reactjs",
"audio",
"player",
"hoc"
],
"dependencies": {
"babel-runtime": "^6.23.0",
"exenv": "^1.2.2",
"insert-css": "^2.0.0",
"prop-types": "^15.5.8",
"rc-slider": "8.6.7"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "^0.25.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint": "^3.7.1",
"eslint-plugin-react": "^6.3.0",
"jest-cli": "^15.1.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.3.4",
"style-loader": "^0.13.1",
"webpack": "^2.2.0",
"webpack-babel-jest": "^1.0.4"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"jest": {
"scriptPreprocessor": "node_modules/webpack-babel-jest",
"testPathDirs": [
"tests"
],
"testRegex": "/*.test.js$",
"moduleFileExtensions": [
"js",
"jsx",
"json"
]
}
}