-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
99 lines (99 loc) · 2.57 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"version": "1.0.4",
"name": "react-lazy-tree",
"description": "A React Treeview Component",
"repository": {
"type": "git",
"url": "https://github.com/ethanselzer/react-lazy-tree.git"
},
"files": [
"dist"
],
"keywords": [
"configure",
"configurable",
"customize",
"customizable",
"data driven",
"data structure",
"easy",
"family",
"fast",
"flexible",
"hamburger",
"hierarchical",
"modify",
"react",
"recursive",
"tree",
"treeview",
"tree view",
"treenode",
"tree node",
"ui"
],
"author": "Ethan Selzer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethanselzer/react-lazy-tree/issues"
},
"homepage": "https://github.com/ethanselzer/react-lazy-tree#readme",
"main": "dist/ReactLazyTree.js",
"options": {
"mocha": "--require scripts/mocha_runner test/**/*.spec.js"
},
"scripts": {
"prepublish": "babel --plugins 'transform-es2015-modules-umd' src --out-dir ./dist",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"test-cov": "gulp test:coverage",
"test-coveralls": "gulp test:coveralls"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"enzyme": "^2.7.1",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^6.10.0",
"gulp": "^3.9.1",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.8",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"react": "15.6.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "15.6.2",
"run-sequence": "^1.2.2",
"sinon": "^2.0"
},
"peerDependencies": {
"react": "~0.14.8 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"babel-runtime": "6.26.0",
"lodash.noop": "3.0.1",
"lodash.omit": "4.5.0",
"prop-types": "15.6.0"
}
}