-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
{
"name": "react-menu-simple",
"version": "0.1.0",
"description": "Accessible menu component for React.JS by jason but now supporting multiple module systems thanks to jeffkole(Jeff Kolesky), really wished he had merged the branch. All credit goes to them I just want this to be an accessible component in the react/redux ecosystem",
"main": "./dist/lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kielan/react-menu-simple.git"
},
"homepage": "https://github.com/instructure-react/react-menu",
"bugs": "https://github.com/kielan/react-menu-simple/issues",
"directories": {
"example": "examples"
},
"scripts": {
"test": "scripts/test --browsers Chrome --single-run",
"start": "scripts/dev-examples"
},
"authors": [
"Jason Madsen, Jeff Kolesky"
],
"license": "MIT",
"devDependencies": {
"browserify": "13.0.0",
"browserify-shim": "3.8.12",
"envify": "3.4.0",
"expect": "1.14.0",
"jsx-loader": "0.13.2",
"karma": "0.13.19",
"karma-browserify": "^5.0.1",
"karma-chrome-launcher": "0.2.2",
"karma-cli": "0.1.2",
"karma-firefox-launcher": "0.1.7",
"karma-mocha": "0.2.1",
"mocha": "2.4.5",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"reactify": "^1.1.1",
"rf-release": "0.4.0",
"uglify-js": "2.6.1",
"webpack-dev-server": "1.14.1"
},
"peerDependencies": {
"react": "^0.14.7"
},
"tags": [
"react",
"menu",
"dropdown"
],
"keywords": [
"react",
"react-component",
"menu",
"dropdown"
],
"browserify-shim": {
"react": "global:React"
},
"browserify": {
"transform": [
"reactify"
]
},
"dependencies": {
"js-stylesheet": "0.0.1",
"react": "^0.14.7",
"react-dom": "^0.14.7"
}
}