forked from bokuweb/re-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.95 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
88
89
90
91
92
93
94
95
96
{
"name": "re-resizable",
"version": "4.9.0",
"description": "Resizable component for React.",
"title": "re-resizable",
"main": "./lib/index.es5.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"keywords": [
"react",
"resize",
"resizable",
"component"
],
"scripts": {
"lint": "eslint src",
"flow": "flow",
"build:prod:main": "rollup -c scripts/prod.js",
"build:prod:es5": "rollup -c scripts/prod.es5.js",
"build": "npm-run-all --parallel build:prod:*",
"start": "npm-run-all --parallel storybook",
"test": "cross-env NODE_ENV='test' avaron test --renderer",
"test:ci": "npm run flow && npm run build",
"flow-copy": "flow-copy-source -v src lib && cp lib/index.js.flow lib/index.es5.js.flow ",
"prepublish": "npm run build && npm run flow && npm run flow-copy",
"storybook": "start-storybook -p 6066",
"build-storybook": "build-storybook",
"format": "prettier-eslint --write --single-quote --semi=true \"src/**/*.js\" ",
"deploy": "npm run build-storybook && gh-pages -d storybook-static"
},
"repository": {
"type": "git",
"url": "https://github.com/bokuweb/react-resizable-box.git"
},
"author": "bokuweb",
"license": "MIT",
"bugs": {
"url": "https://github.com/bokuweb/react-resizable-box/issues"
},
"homepage": "https://github.com/bokuweb/react-resizable-box",
"devDependencies": {
"@storybook/addon-info": "3.4.10",
"@storybook/react": "3.4.10",
"avaron": "0.2.0",
"babel-eslint": "8.2.6",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"babel-register": "6.26.0",
"cross-env": "5.2.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"flow-bin": "0.79.1",
"flow-copy-source": "2.0.2",
"flow-typed": "2.5.1",
"gh-pages": "1.2.0",
"npm-run-all": "4.1.3",
"prettier": "1.14.2",
"prettier-eslint": "8.8.2",
"prettier-eslint-cli": "4.7.1",
"react": "16.5.1",
"react-dom": "16.5.1",
"rollup": "0.65.2",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "9.1.6",
"rollup-plugin-node-globals": "1.2.1",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-replace": "2.0.0",
"rollup-watch": "4.3.1",
"sinon": "6.3.1"
},
"typings": "./index.d.ts",
"files": [
"lib",
"index.d.ts"
],
"avaron": {
"babel": "inherit",
"require": [
"babel-polyfill",
"babel-register"
],
"fixture": "./test/fixture.html"
},
"dependencies": {}
}