This repository has been archived by the owner on Jul 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "react-nouislider",
"version": "2.0.1",
"description": "React component wrapping leongersen/noUiSlider",
"main": "dist/react-nouislider.common.js",
"scripts": {
"lint": "eslint . --quiet",
"test": "npm run lint",
"build": "mkdir -p dist && babel index.js --out-file dist/react-nouislider.common.js",
"watch": "mkdir -p dist && babel index.js --watch --out-file dist/react-nouislider.common.js",
"dev": "webpack-dev-server --config webpack.example.config.js --hot --inline --no-info",
"prepublish": "NODE_ENV=production npm run build"
},
"repository": "algolia/react-nouislider",
"keywords": [
"react",
"nouislider",
"slider",
"component",
"reactjs",
"range",
"slider"
],
"author": "Algolia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/algolia/react-nouislider/issues"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^0.14.0 || ^15.0.1 || ^16.0.0"
},
"homepage": "https://github.com/algolia/react-nouislider",
"dependencies": {
"nouislider": "^9.2.0"
},
"devDependencies": {
"babel": "5.8.23",
"babel-core": "^5.8.29",
"babel-eslint": "^4.1.8",
"babel-loader": "^5.3.2",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^0.1.0",
"eslint-config-algolia": "^4.6.0",
"eslint-plugin-algolia": "^1.5.0",
"eslint-plugin-react": "^3.16.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.12.1"
}
}