forked from davidchin/react-input-range
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.2 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
{
"name": "react-input-range",
"version": "0.8.0",
"description": "React component for inputting numeric values within a range",
"keywords": [
"react",
"react-component",
"range-slider",
"input-range",
"range",
"slider",
"form",
"input"
],
"repository": {
"type": "git",
"url": "https://github.com/davidchin/react-input-range.git"
},
"main": "lib/InputRange/index.js",
"author": "David Chin",
"license": "MIT",
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"babel-core": "^5.8.25",
"babel-eslint": "^4.0.5",
"babelify": "^6.1.3",
"browserify": "^11.0.0",
"browserify-shim": "^3.8.10",
"del": "^1.2.0",
"es5-shim": "^4.4.1",
"eslint": "^1.10.2",
"eslint-config-airbnb": "^1.0.2",
"eslint-plugin-react": "^3.10.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-bump": "^1.0.0",
"gulp-concat": "^2.6.0",
"gulp-connect": "^2.2.0",
"gulp-eslint": "^1.1.1",
"gulp-git": "^1.4.0",
"gulp-minify-css": "^1.2.0",
"gulp-postcss": "^6.0.0",
"gulp-prompt": "^0.1.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.1.0",
"gulp-scss-lint": "^0.3.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jasmine-core": "^2.3.4",
"karma": "^0.13.8",
"karma-babel-preprocessor": "^5.2.1",
"karma-browserify": "^4.3.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"lodash": "^3.10.0",
"phantomjs": "^1.9.17",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"run-sequence": "^1.1.4",
"semver": "^5.0.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.3.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"scripts": {
"build": "gulp build",
"build:dist": "gulp build:dist",
"build:lib": "gulp build:lib",
"release": "gulp release",
"start": "gulp run",
"test": "gulp test",
"prepublish": "npm run build:lib"
}
}