This repository has been archived by the owner on Oct 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
67 lines (67 loc) · 2.28 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
{
"name": "react-metismenu-router-link",
"version": "2.1.0",
"description": "Router link extension for `react-metismenu` menu component.",
"main": "lib/RouterLink.js",
"keywords": [
"react",
"metismenu",
"router",
"link",
"extension",
"json",
"menu"
],
"author": "H.Alper Tuna",
"license": "MIT",
"scripts": {
"dev-server": "webpack-dev-server --config webpack/dev.conf.js --progress --colors --hot --inline",
"start": "npm run dev-server",
"build-demo": "rm -rf demo && mkdir demo && cp dev/react-metismenu-standart.min.css dev/index.html demo && webpack --config webpack/demo.conf.js --progress --colors",
"build-dist-js-min": "webpack --config webpack/dist-min.conf.js --progress --colors",
"build-dist-js": "webpack --config webpack/dist.conf.js --progress --colors",
"build-dist": "rm -rf dist && npm run build-dist-js && npm run build-dist-js-min",
"build-lib": "rm -rf lib && babel src -d lib",
"build": "npm run build-lib && npm run build-dist",
"lint-confs": "eslint webpack --ext=jsx --ext=js",
"lint-src": "eslint src --ext=jsx --ext=js",
"lint-dev": "eslint dev --ext=jsx --ext=js",
"test": "npm run lint-confs && npm run lint-src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpertuna/react-metismenu-router-link.git"
},
"bugs": {
"url": "https://github.com/alpertuna/react-metismenu-router-link/issues"
},
"homepage": "https://github.com/alpertuna/react-metismenu-router-link#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-metismenu": "^1.4.0-alpha.2",
"react-router-dom": "^4.2.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-metismenu": "^1.4.0-alpha.2",
"react-router-dom": "^4.2.2"
},
"dependencies": {
"classnames": "^2.2.5"
}
}