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 94
/
Copy pathpackage.json
93 lines (93 loc) · 3.18 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
89
90
91
92
93
{
"name": "react-metismenu",
"version": "1.4.0",
"description": "A ready / simple to use, highly customizable, updateable, ajax supported, animated and material designed menu component for React",
"main": "lib/index.js",
"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/{index.html,style.css} 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-css-min": "cleancss -o dist/react-metismenu-standart.min.css dist/react-metismenu-standart.css",
"build-dist-css": "lessc less/standart.less dist/react-metismenu-standart.css",
"build-lib": "rm -rf lib && babel src -d lib",
"build-dist": "rm -rf dist && npm run build-dist-js && npm run build-dist-js-min && npm run build-dist-css && npm run build-dist-css-min",
"build": "npm run build-lib && npm run build-dist",
"lint-confs": "eslint webpack __tests__ --ext=jsx --ext=js",
"lint-src": "eslint src --ext=jsx --ext=js",
"lint-dev": "eslint dev --ext=jsx --ext=js",
"unit-test": "jest",
"coverage": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info",
"_test": "npm run lint-confs && npm run lint-src && npm run coverage",
"test": "npm run lint-src && npm run coverage"
},
"jest": {
"testRegex": "/__tests__/.*\\.jsx?$",
"moduleFileExtensions": [
"js",
"jsx"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpertuna/react-metismenu.git"
},
"keywords": [
"react",
"metis",
"menu",
"component",
"json",
"collapsable",
"animated",
"smooth",
"customizable",
"ajax",
"material"
],
"author": "H.Alper Tuna <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alpertuna/react-metismenu/issues"
},
"homepage": "https://github.com/alpertuna/react-metismenu#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"clean-css-cli": "^4.1.10",
"coveralls": "^3.0.0",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"less": "^3.0.0-alpha.3",
"less-loader": "^4.0.5",
"less-plugin-clean-css": "^1.5.1",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"style-loader": "^0.19.0",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.2"
},
"peerDependencies": {
"react": "^0.14.9 || >=15.3.0",
"react-dom": "^0.14.9 || >=15.3.0"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"react-redux": "^5.0.6",
"redux": "^3.6.0",
"simple-ajax": "^2.6.0"
}
}