forked from mockingbot/react-resizable-rotatable-draggable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "@posturize/react-resizable-rotatable-draggable",
"version": "0.3.0-dev.0",
"description": "A rectangle react component which can be resized and rotated",
"author": "MockingBot",
"license": "MIT",
"repository": "github:mockingbot/react-resizable-rotatable-draggable",
"keywords": [
"react",
"rectangle",
"resize",
"rotate"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=6"
},
"scripts": {
"build": "rollup -c",
"build-dev": "rollup -c -w",
"build-example": "cd example && npm install && npm run build",
"publish-dev": "npm publish --tag dev",
"start": "npm run build-dev",
"deploy": "npm run build && npm run build-example && gh-pages -d example/dist",
"prepack": "npm run build"
},
"peerDependencies": {
"prop-types": "^15",
"react": "^16",
"styled-components": "^4"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"cross-env": "^5.2.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"gh-pages": "^2.0.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"styled-components": "^4.1.3"
},
"files": [
"dist"
]
}