-
Notifications
You must be signed in to change notification settings - Fork 251
/
package.json
77 lines (77 loc) · 1.93 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
{
"name": "react-dropdown",
"version": "1.11.0",
"description": "React dropdown component",
"main": "dist/index.js",
"style": "style.css",
"repository": {
"type": "git",
"url": "git://github.com/fraserxu/react-dropdown.git"
},
"files": [
"dist/index.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/fraserxu/react-dropdown/issues"
},
"homepage": "https://github.com/fraserxu/react-dropdown",
"dependencies": {
"classnames": "^2.2.3"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0-0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^0.14.7 || ^15.0.0-0 || ^16.0.0 || ^17.0.0|| ^18.0.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"presets": [
"@babel/react",
"@babel/env"
]
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.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": "^11.0.1",
"watchify": "^3.7.0"
},
"typings": "./index.d.ts",
"scripts": {
"build": "babel index.js -o dist/index.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"
}
}