forked from fraserxu/react-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.79 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.79 KB
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
{
"name": "react-accessible-dropdown",
"version": "1.0.2",
"description": "An accessible React dropdown component",
"main": "dist/index.js",
"style": "style.css",
"repository": {
"type": "git",
"url": "git://github.com/dittonjs/react-accessible-dropdown.git"
},
"files": [
"dist/index.js",
"style.css"
],
"keywords": [
"react",
"react-component",
"component",
"dropdown",
"select"
],
"author": {
"name": "Joseph Ditton",
"email": "dittonjs@gmail.com",
"url": "atomicjolt.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dittonjs/react-accessible-dropdown/issues"
},
"homepage": "https://github.com/dittonjs/react-accessible-dropdown",
"dependencies": {
"classnames": "^2.2.3"
},
"peerDependencies": {
"react": "^0.14.7 || >15.0.0",
"react-dom": "^0.14.7 || >15.0.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-hmr": "^0.3.1",
"ecstatic": "^1.4.0",
"gh-pages": "^0.11.0",
"react": "^0.14.7 || ^15.0.0-0",
"react-dom": "^0.14.7 || ^15.0.0-0",
"standard": "^6.0.7",
"watchify": "^3.7.0"
},
"scripts": {
"build": "babel index.js -o dist/index.js",
"watch": "watchify example/main.js -p browserify-hmr -o example/bundle.js -dv",
"start": "ecstatic -p 8080 example & npm run watch",
"prepublish": "npm run build",
"predeploy": "browserify example/main.js -o example/bundle.js",
"deploy": "gh-pages -d example"
}
}