forked from floating-ui/react-popper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.09 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
75
{
"name": "@rexlabs/react-popper",
"version": "0.7.0",
"description": "React wrapper around PopperJS.",
"main": "lib/react-popper.js",
"files": [
"dist",
"lib"
],
"scripts": {
"build:lib": "babel src --out-dir lib",
"build": "npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js",
"dev": "webpack-dev-server --hot --progress --host 0.0.0.0",
"postbuild": "NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js",
"prebuild": "rm -rf dist && mkdir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/rexsoftware/react-popper"
},
"keywords": [
"react",
"react-popper",
"popperjs",
"component",
"drop",
"tooltip",
"popover"
],
"author": "Travis Arnold <travis@souporserious.com> (http://souporserious.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/souporserious/react-popper/issues"
},
"homepage": "https://github.com/souporserious/react-popper",
"peerDependencies": {
"react": "0.14.x || ^15.0.0",
"react-dom": "0.14.x || ^15.0.0"
},
"dependencies": {
"is-equal-shallow": "^0.1.3",
"popper.js": "^1.10.2",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chokidar": "^1.6.1",
"css-loader": "^0.25.0",
"glamor": "3.0.0-1",
"html-tag-names": "^1.1.1",
"http-server": "^0.9.0",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.2.0",
"outy": "^0.1.2",
"postcss-loader": "^0.13.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-measure": "^1.4.6",
"react-motion-ui-pack": "^0.10.2",
"react-travel": "^1.3.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"svg-tag-names": "^1.1.0",
"velocity-react": "^1.2.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.9.0"
}
}