-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.62 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
{
"name": "react-multi-bar-slider",
"version": "1.4.0",
"description": "Slider component with multiple bars for React",
"repository": {
"type": "git",
"url": "https://github.com/rafaelklaessen/react-multi-bar-slider.git"
},
"author": "Rafael Klaessen",
"bugs": {
"url": "https://github.com/rafaelklaessen/react-multi-bar-slider/issues"
},
"license": "MIT",
"keywords": [
"slider",
"multi slider",
"multi bar slider",
"react slider",
"react multi slider"
],
"peerDependencies": {
"@emotion/core": "^10.x",
"@emotion/styled": "^10.x",
"prop-types": "^15.x",
"react": "^15.3.x || ^16.x",
"react-dom": "^15.3.x || ^16.x"
},
"scripts": {
"build": "webpack --config webpack.config.babel.js",
"release": "webpack --p --config webpack.config.babel.js",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint ./src"
},
"devDependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.9.0",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"jest-cli": "^22.4.3",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"webpack": "^3.8.1"
},
"jest": {
"testURL": "http://localhost"
}
}