-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.02 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
{
"name": "react-opium-select",
"version": "0.6.0",
"description": "Simple select dropdown with a better UI.",
"main": "dist/browser.js",
"module": "dist/es.js",
"browser": "dist/browser.js",
"files": [
"dist",
"style.css",
"README.md",
"demo.gif"
],
"peerDependencies": {
"react": "^16.4.1"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Prasanjit Singh",
"email": "prasanjit.singh@live.com"
},
"repository": {
"type": "git",
"url": "https://github.com/pb03/react-opium-select"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-uglify": "^6.0.0"
},
"keywords": [
"select",
"dropdown",
"react",
"animation",
"simple"
]
}