This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
70 lines (70 loc) · 1.96 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
{
"name": "react-dock",
"version": "0.2.4",
"description": "Resizable dockable react component",
"scripts": {
"build-lib": "babel src --out-dir lib",
"build-demo": "NODE_ENV=production webpack -p",
"stats": "webpack --profile --json > stats.json",
"start": "webpack-dev-server",
"lint": "eslint src",
"preversion": "npm run lint && npm test",
"version": "npm run build-demo && git add -A .",
"postversion": "git push",
"prepublish": "npm run build-lib",
"test": "mocha --compilers js:babel-core/register"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/alexkuz/react-dock.git"
},
"keywords": [
"react",
"reactjs",
"dock",
"sidebar"
],
"author": "Alexander <[email protected]> (http://kuzya.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexkuz/react-dock/issues"
},
"homepage": "https://github.com/alexkuz/react-dock",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-loader": "^1.1.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^3.11.3",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"radium": "^0.15.3",
"raw-loader": "^0.5.1",
"react-bootstrap": "^0.28.1",
"react-dom": "^0.14.3",
"react-hot-loader": "^1.3.0",
"react-pure-render": "^1.0.2",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"peerDependencies": {
"react": ">=0.13.0",
"babel-runtime": "^6.3.13"
},
"dependencies": {
"lodash.debounce": "^3.1.1",
"prop-types": "^15.5.8"
}
}