forked from dowjones/react-dropdown-tree-select
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.5 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
{
"name": "react-dropdown-tree-select",
"version": "0.0.1-beta.10",
"description": "A React Dropdown with Checkboxes that supports Tree data",
"main": "dist/react-dropdown-tree-select.js",
"repository": "https://github.com/dowjones/react-dropdown-tree-select.git",
"author": "pandah <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf dist/**/* && webpack --config webpack.config.js --bail",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"demo": "webpack --progress --colors --watch --config docs/webpack.config.js",
"lint": "eslint --fix src docs webpack.config.js",
"test": "cross-env NODE_ENV=test ava",
"test:cov": "rimraf .nyc_output && nyc npm test"
},
"files": [
"dist"
],
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.4",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-simple-dropdown": "^2.0.0"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.4.1",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.13.1",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"ignore-styles": "^5.0.1",
"jsdom": "^10.1.0",
"jsdom-global": "^3.0.2",
"nyc": "^10.3.2",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"sinon": "^2.2.0",
"style-loader": "^0.16.1",
"webpack": "^2.4.1"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"ava": {
"files": [
"src/**/*.test.js"
],
"require": [
"babel-register",
"ignore-styles",
"jsdom-global/register"
],
"babel": "inherit"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"cache": true,
"reporter": [
"html",
"text-summary"
],
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.test.js",
"**/node_modules/**",
"dist",
"demo"
]
}
}