forked from balloob/react-sidebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "@health-hub/react-sidebar",
"version": "1.0.1",
"author": "Joe Flack <[email protected]>",
"description": "A sidebar component for React. Forked from package by the same name, react-sidebar 2.3.2 at https://github.com/balloob/react-sidebar, by Paulus Schoutsen <[email protected]>",
"main": "dist-modules/index.js",
"jsnest:main": "src/index.js",
"scripts": {
"build": "babel src --out-dir dist-modules && webpack --colors --progress -p",
"dev": "webpack --watch",
"lint": "eslint src example/src"
},
"keywords": [
"component",
"react",
"react-component",
"sidebar"
],
"repository": {
"type": "git",
"url": "https://github.com/the-health-hub/health-hub.components.react-sidebar.git"
},
"license": "MIT",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"prop-types": ">=15.5.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.3.13",
"eslint": "<2.3.0",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.13.1",
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}