-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.43 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
{
"peerDepencies": {
"react": "^16.2.0"
},
"name": "@d8660091/react-popper",
"version": "1.0.4",
"description": "A React component for displaying popper based on popper.js",
"main": "dist/index.js",
"module": "dist/index-es6.js",
"author": "Xu Deng",
"repository": {
"type": "git",
"url": "git://github.com/d8660091/react-popper.git"
},
"keywords": [
"react",
"popper",
"popper.js",
"recompose"
],
"license": "MIT",
"dependencies": {
"popper.js": "^1.14.3",
"prop-types": "^15.6.2",
"recompose": "^0.27.1"
},
"devDependencies": {
"@storybook/addon-info": "^3.4.7",
"@storybook/addon-knobs": "^3.4.7",
"@storybook/addon-options": "^3.4.7",
"@storybook/addon-storyshots": "^3.4.7",
"@storybook/addons": "^3.4.7",
"@storybook/react": "^3.4.7",
"@storybook/storybook-deployer": "^2.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^23.1.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.1"
},
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && babel src -o dist/index-es6.js && BABEL_ENV=commonjs babel src -o dist/index.js",
"test": "jest",
"prepublish": "npm run build"
}
}