-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
75 lines (75 loc) · 2.05 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
{
"name": "reactrangeslider",
"version": "3.0.6",
"description": "A range slider component for React.",
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"main": "lib/index.js",
"keywords": [
"browser",
"react",
"slider",
"range-slider",
"range-input",
"components",
"widget",
"javascript",
"react-component"
],
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-mocha": "^2.2.0",
"eslint-plugin-react": "^5.1.1",
"exenv": "^1.2.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"flow-bin": "^0.24.2",
"mocha": "^2.4.5",
"postcss-loader": "^0.9.1",
"precss": "^1.4.0",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.1",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jpuri/react-range-slider.git"
},
"scripts": {
"clean": "rimraf lib",
"build:webpack": "NODE_ENV=production webpack --config config/webpack.config.js",
"build": "npm run clean && npm run build:webpack",
"test": "mocha --compilers js:config/test-compiler.js config/test-setup.js js/**/*Test.js",
"lint": "eslint js && eslint playground",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"check": "npm run lint && npm run flow"
},
"author": {
"name": "Jyoti Puri",
"email": "jyotipuri@gmail.com"
},
"license": "MIT"
}