forked from bokuweb/re-resizable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.22 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
97
98
99
100
101
102
103
104
105
106
{
"name": "re-resizable",
"version": "5.0.0-beta.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": "tslint -c tslint.json src/index.tsx",
"tsc": "tsc -p tsconfig.json",
"build:prod:main": "rollup -c scripts/prod.js",
"build:prod:es5": "rollup -c scripts/prod.es5.js",
"build": "npm-run-all --serial build:prod:*",
"start": "npm-run-all --parallel storybook",
"test": "cross-env NODE_ENV='test' tsc && avaron lib/index.test.js --renderer",
"test:ci": "npm run flow && npm run build",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6066",
"build-storybook": "build-storybook",
"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": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-transform-modules-commonjs": "7.2.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@babel/traverse": "7.3.4",
"@babel/types": "7.3.4",
"@storybook/addon-info": "4.1.14",
"@storybook/addon-options": "4.1.14",
"@storybook/react": "4.1.14",
"@types/node": "11.11.1",
"@types/react": "16.8.7",
"@types/react-dom": "16.8.2",
"@types/sinon": "7.0.9",
"avaron": "0.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"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",
"gh-pages": "2.0.1",
"npm-run-all": "4.1.5",
"prettier": "1.16.4",
"react": "16.8.4",
"react-dom": "16.8.4",
"rollup": "1.6.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.1",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "4.0.1",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-typescript2": "0.16.0",
"rollup-watch": "4.3.1",
"sinon": "7.2.7",
"tslint": "5.13.1",
"tslint-config-google": "1.0.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.3.3333"
},
"typings": "./lib/index.d.ts",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"avaron": {
"babel": "inherit",
"require": [
"babel-polyfill",
"babel-register"
],
"fixture": "./test/fixture.html"
},
"dependencies": {
"fast-memoize": "^2.5.1"
}
}