forked from Sharlaan/material-ui-superselectfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.08 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
{
"name": "material-ui-superselectfield",
"version": "1.10.0",
"description": "original Material-UI's SelectField component enhanced with autocompletion, multiselection, custom renderers, and infinite loading.",
"keywords": [
"react-component",
"material-ui",
"autocomplete",
"select",
"dropdown",
"NWB",
"es2017"
],
"author": "Raphaël Morineau <raphael.morineau@gmail.com>",
"contributors": [
"Tarik Huber <huber.tarik@gmail.com>",
"Maximilian Pichler <maximilian.pichler97@gmail.com>"
],
"homepage": "https://sharlaan.github.io/material-ui-superselectfield",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Sharlaan/material-ui-superselectfield.git"
},
"engines": {
"node": ">=7"
},
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"fix": "yarn lint --fix",
"format": "prettier-eslint --write \"src/**/*@(.css|.js)\" \"demo/src/**/*@(.css|.js)\"",
"lint": "eslint src demo/src",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
},
"husky": {
"hooks": {
"pre-commit": "yarn fix && lint-staged",
"pre-push": "yarn test:coverage"
}
},
"lint-staged": {
"*.{js,css}": [
"yarn format",
"git add"
]
},
"dependencies": {
"react-infinite": "^0.13.0"
},
"peerDependencies": {
"material-ui": ">= 0.17 < 1",
"react": ">= 15 < 16.3",
"react-dom": ">= 15 < 16.3"
},
"devDependencies": {
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint-config-sharlaan": "^2.3.9",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"material-ui": "< 1",
"nwb": "^0.23.0",
"prop-types": "^15.6.2",
"react": "< 16.3",
"react-dom": "< 16.3",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
}
}