forked from jakezatecky/react-checkbox-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.07 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
{
"name": "react-checkbox-tree",
"version": "1.4.1",
"description": "A simple and elegant checkbox tree for React.",
"author": "Jake Zatecky",
"license": "MIT",
"types": "src/index.d.ts",
"keywords": [
"react",
"checkbox",
"tree"
],
"repository": {
"type": "git",
"url": "https://github.com/jakezatecky/react-checkbox-tree"
},
"homepage": "https://jakezatecky.github.io/react-checkbox-tree",
"bugs": "https://github.com/jakezatecky/react-checkbox-tree/issues",
"main": "lib/index.js",
"browser": "lib/index.browser.js",
"scripts": {
"build": "gulp build",
"examples": "gulp examples",
"gh-deploy": "git subtree push --prefix examples/dist origin gh-pages",
"prepublishOnly": "gulp build",
"test": "gulp test"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/react": "^16.4.13",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"browser-sync": "^2.18.6",
"chai": "^4.0.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^5.2.0",
"eslint-config-takiyon-react": "^0.4.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.10.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^6.0.0",
"gulp-clean-css": "^3.10.0",
"gulp-eslint": "^5.0.0",
"gulp-header": "^2.0.5",
"gulp-less": "^4.0.1",
"gulp-mocha": "^6.0.0",
"gulp-run": "^1.7.1",
"gulp-sass": "^4.0.1",
"gulp-scss-lint": "^0.7.0",
"jsdom": "^12.0.0",
"mocha": "^5.0.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"webpack": "^4.4.1",
"webpack-stream": "^5.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.10",
"nanoid": "^1.0.1",
"prop-types": "^15.5.8"
}
}