forked from storybook-eol/react-treebeard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.19 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.19 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
76
77
{
"name": "react-treebeard",
"version": "1.1.2",
"description": "React Tree View Component",
"main": "index.js",
"scripts": {
"prepublish": "npm run lib",
"lib": "npm run babel",
"babel": "rimraf lib && babel src/ -d lib/",
"test": "./node_modules/.bin/karma start karma.conf.js",
"test-travis": "./node_modules/karma/bin/karma start --browsers Firefox --single-run",
"example": "webpack-dev-server --content-base ./example/ --config ./example/webpack.config.js"
},
"peerDependencies": {
"react": "^0.14 || ^15.0",
"react-dom": "^0.14 || ^15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexcurtis/react-treebeard.git"
},
"keywords": [
"react",
"treeview",
"data-driven",
"customisable",
"fast"
],
"author": "Alex Curtis",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexcurtis/react-treebeard/issues"
},
"homepage": "https://github.com/alexcurtis/react-treebeard#readme",
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.29",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.3",
"chai": "^3.4.0",
"del": "^2.0.2",
"eslint": "^1.8.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.6.3",
"gulp": "^3.9.0",
"gulp-babel": "^6.0.0",
"gulp-eslint": "^1.0.0",
"gulp-open": "^1.0.0",
"gulp-util": "^3.0.7",
"istanbul": "^0.3.22",
"istanbul-instrumenter-loader": "^0.1.3",
"karma": "^0.13.14",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.22",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"node-libs-browser": "^0.5.3",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.4.4",
"sinon": "uberVU/Sinon.JS.git",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"babel-runtime": "^5.8.29",
"react-utils": "alexcurtis/react-utils"
}
}