-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 3.04 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
100
101
102
103
104
105
{
"name": "material-multi-picker",
"version": "2.2.0",
"description": "A typeahead multiselect component for React and Material UI",
"main": "lib/index.js",
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/atropos-tech/material-multi-picker"
},
"homepage": "https://atropos-tech.github.io/material-multi-picker/index.html",
"bugs": {
"url": "https://github.com/atropos-tech/material-multi-picker/issues"
},
"scripts": {
"test": "jest --watch --coverage",
"test-ci": "jest --coverage --ci --reporters=jest-junit && codecov",
"dev-docs": "webpack-dev-server --config webpack.config.js --hot --inline --color --progress --open --mode development",
"transpile": "rimraf ./lib && cross-env BABEL_ENV=production babel src --out-dir lib --ignore \"src/**/*.spec.js\"",
"build-docs": "rimraf ./docs && webpack --config webpack.config.js --mode=production --devtool source-maps && copyfiles -u 1 ./public/* ./docs",
"lint": "eslint src",
"start": "npm run dev-docs"
},
"keywords": [
"react-component",
"react",
"downshift",
"picker",
"material-ui",
"typeahead",
"multi-picker",
"form-fields"
],
"author": "Duncan Thacker ([email protected])",
"license": "MIT",
"dependencies": {
"downshift": "^3.3.4",
"react-debounce-render": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.2",
"@material-ui/core": "^3.9.3",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"codecov": "^3.6.1",
"copyfiles": "^2.1.1",
"cross-env": "^6.0.0",
"demo-source-loader": "^1.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"file-loader": "^4.2.0",
"jest": "^24.9.0",
"jest-environment-enzyme": "^7.1.1",
"jest-enzyme": "^7.1.1",
"jest-junit": "^8.0.0",
"prop-types": "^15.7.2",
"raw-loader": "^3.1.0",
"react": "^16.10.1",
"react-curry-component": "^1.1.1",
"react-dom": "^16.10.1",
"react-highlight-words": "^0.16.0",
"react-hot-loader": "^4.12.14",
"react-jss": "^8.6.1",
"react-markdown": "^4.2.2",
"react-redux": "^7.1.1",
"react-syntax-highlighter": "^11.0.2",
"redux": "^4.0.4",
"redux-form": "^8.2.6",
"rimraf": "^3.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"@material-ui/core": ">=4"
},
"jest": {
"setupFilesAfterEnv": [
"jest-enzyme"
],
"testEnvironment": "enzyme",
"testEnvironmentOptions": {
"enzymeAdapter": "react16"
},
"collectCoverageFrom": [
"src/**/*.js"
],
"watchPathIgnorePatterns": [
"/docsrc/"
]
}
}