forked from bokuweb/react-sortable-pane
-
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.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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": "react-sortable-pane",
"version": "0.5.3",
"description": "",
"main": "lib/index.js",
"scripts": {
"watch": "npm run watch:lib & npm run watch:example",
"watch:lib": "watchify --extension=js -o lib/index.js src/index.js",
"watch:example": "watchify --extension=js -o example/dist/bundle.js example/src/index.js",
"build": "npm run build:lib & npm run build:example",
"build:lib": "browserify --extension=js -o lib/index.js src/index.js",
"build:example": "browserify --extension=js -o example/dist/bundle.js example/src/index.js",
"test": "karma start",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"lint": "eslint src",
"prepush": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/bokuweb/react-sortable-pane.git"
},
"keywords": [
"react",
"resize",
"resizable",
"sortable",
"component"
],
"author": "bokuweb",
"license": "MIT",
"bugs": {
"url": "https://github.com/bokuweb/react-sortable-pane/issues"
},
"homepage": "https://github.com/bokuweb/react-sortable-pane",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.2.0",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-espower": "2.0.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015-ie": "^6.6.2",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.5.0",
"babelify": "7.2.0",
"browserify": "^12.0.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.0",
"husky": "^0.11.4",
"re-bulma": "0.0.5",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"sinon": "^1.17.2",
"watchify": "^3.5.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"files": [
"lib"
],
"dependencies": {
"lodash.isequal": "^4.1.1",
"react-motion": "^0.4.4",
"react-resizable-box": "^1.3.2"
}
}