-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "react-dom-dropdown",
"version": "0.0.9",
"description": "react-dom-dropdown allows you to display / hide content by clicking on a trigger like a menu entry or an icon.",
"main": "lib/Dropdown.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir lib --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jvalente/react-dom-dropdown.git"
},
"keywords": [
"react",
"react-component",
"dropdown",
"menu",
"popup",
"select"
],
"author": "João Valente <[email protected]> (http://doist.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jvalente/react-dom-dropdown/issues"
},
"homepage": "https://github.com/jvalente/react-dom-dropdown#readme",
"dependencies": {
"classnames": "^2.2.5"
},
"peerDependencies": {
"react": "^0.14 || ^15.0",
"react-dom": "^0.14 || ^15.0"
},
"devDependencies": {
"style-loader": "^0.16.0",
"babel-cli": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0"
}
}