forked from fraserxu/react-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.29 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
{
"name": "react-dropdown-browser",
"version": "1.8.0",
"description": "React dropdown component",
"main": "dist/index.js",
"style": "style.css",
"repository": {
"type": "git",
"url": "git://github.com/datavis-tech/react-dropdown-browser.git"
},
"files": [
"dist/index.js",
"dist/umd.js",
"dist/umd.min.js",
"index.d.ts",
"style.css"
],
"keywords": [
"react",
"react-component",
"component",
"dropdown",
"select"
],
"author": {
"name": "Fraser Xu",
"email": "xvfeng123@gmail.com",
"url": "https://fraserxu.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/datavis-tech/react-dropdown-browser/issues"
},
"homepage": "https://github.com/datavis-tech/react-dropdown-browser",
"dependencies": {
"classnames": "^2.2.3"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0-0 || ^16.0.0",
"react-dom": "^0.14.7 || ^15.0.0-0 || ^16.0.0"
},
"browserify": {
"transform": [
"babelify",
"browserify-shim"
]
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"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",
"browserify-shim": "^3.8.14",
"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": "^11.0.1",
"uglify-js": "^3.6.0",
"watchify": "^3.7.0"
},
"typings": "./index.d.ts",
"scripts": {
"build": "babel index.js -o dist/index.js && browserify index.js -o dist/umd.js --standalone ReactDropdown && uglifyjs --compress --mangle -o dist/umd.min.js dist/umd.js",
"test": "standard index.js",
"watch": "watchify example/main.js -p browserify-hmr -o example/bundle.js -dv",
"start": "ecstatic -p 8080 example & npm run watch",
"prepublishOnly": "npm test && npm run build",
"predeploy": "npm test && browserify example/main.js -o example/bundle.js",
"deploy": "gh-pages -d example",
"lint-fix": "standard --fix index.js"
}
}