forked from tomkp/react-split-pane
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.46 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
{
"name": "ubervu-react-split-pane",
"description": "Fork of React split-pane component",
"main": "index.js",
"version": "0.1.57",
"repository": {
"type": "git",
"url": "https://github.com/ubervu/react-split-pane"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ubervu/react-split-pane"
},
"homepage": "https://github.com/ubervu/react-split-pane",
"author": "UberVU",
"keywords": [
"react",
"react-component",
"split-pane",
"react-split-pane",
"es6"
],
"peerDependencies": {
"react": ">=0.12 <16"
},
"dependencies": {
"react-dom-polyfill": "1.0.1",
"inline-style-prefixer": "^2.0.4",
"react-style-proptype": "^1.4.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-optional": "^1.0.0",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"coveralls": "^2.11.15",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"express": "^4.14.0",
"mochify": "^2.18.1",
"mochify-istanbul": "^2.4.1",
"phantomjs-prebuilt": "^2.1.13",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.0",
"react-dom": "^15.4.0",
"surge": "^0.18.0",
"watchify": "^3.7.0"
},
"scripts": {
"compile": "babel -d lib/ src/",
"compile:watch": "babel -w -d lib/ src/",
"prepublish": "npm run compile",
"test": "npm run compile && mochify -R spec",
"test:watch": "npm run compile:watch & mochify -R spec --watch",
"test:coverage": "mochify --plugin [ mochify-istanbul --exclude '**/test/**' --report lcovonly ] && cat lcov.info | coveralls && rm lcov.info",
"lint": "eslint src/",
"demo": "npm run compile && browserify demo/Examples.js -d -t -o demo/bundle.js",
"demo:watch": "npm run compile:watch & watchify demo/Examples.js -d -t -o demo/bundle.js",
"demo:publish": "npm run compile && browserify demo/Examples.js -d -t -o demo/bundle.js && surge demo react-split-pane.surge.sh",
"release:patch": "npm test && npm run compile && npm version patch && git push && npm publish"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}