-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.4 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
{
"name": "react-range-slider",
"version": "0.2.1",
"description": "A flexible slider for reactjs.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest",
"watch": "./node_modules/.bin/gulp watch --gulpfile example/gulpfile.js",
"deploy": "./node_modules/.bin/gulp deploy --gulpfile example/gulpfile.js"
},
"repository": {
"type": "git",
"url": "git@github.com:xeodou/react-range-slider.git"
},
"bugs": "https://github.com/xeodou/react-range-slider/issues",
"homepage": "https://github.com/xeodou/react-range-slider",
"keywords": [
"react",
"react-component",
"range",
"slider"
],
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
],
"testPathIgnorePatterns": [
"/__tests__/[^/]*/.+"
]
},
"peerDependencies": {
"react": ">=0.14.x"
},
"author": "xeodou@gmail.com",
"license": "MIT",
"devDependencies": {
"codemirror": "^4.6.0",
"eggshell": "^0.1.20",
"gulp": "^3.8.8",
"gulp-browserify": "^0.5.0",
"gulp-connect": "^2.2.0",
"gulp-gh-pages": "^0.3.4",
"gulp-load-plugins": "^0.6.0",
"gulp-rimraf": "^0.1.0",
"gulp-sass": "^2.1.0",
"gulp-size": "^1.1.0",
"jest-cli": "^0.4.0",
"object-assign": "^3.0.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"reactify": "^1.1.1"
},
"dependencies": {
"object-assign": ">=2.0.0"
}
}