forked from Sharlaan/material-ui-superselectfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.68 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
{
"name": "material-ui-superselectfield",
"version": "1.5.4",
"description": "original Material-UI's SelectField component enhanced with autocompletion, multiselection, custom renderers, and infinite loading.",
"private": false,
"author": "Raphaël Morineau <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sharlaan/material-ui-superselectfield.git"
},
"homepage": "https://sharlaan.github.io/material-ui-superselectfield",
"engines": {
"node": ">=6"
},
"main": "lib/SuperSelectField.js",
"dependencies": {
"create-react-class": "^15.5.3",
"prop-types": "^15.5.10",
"react-infinite": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-entries": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.1",
"enzyme": "^2.8.2",
"flag-icon-css": "^2.8.0",
"gh-pages": "^1.0.0",
"material-ui": "^0.18.1",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1",
"react-scripts": "^1.0.7",
"react-tap-event-plugin": "^2.0.1",
"standard": "^10.0.2"
},
"peerDependencies": {
"material-ui": ">= 0.15 < 1",
"react": "^15.x",
"react-dom": "^15.x",
"react-tap-event-plugin": "^1.x || ^2.x"
},
"babel": {
"plugins": [
"transform-class-properties",
"transform-object-rest-spread",
"transform-object-entries"
],
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"> 3%",
"safari >= 8"
]
},
"modules": "commonjs",
"debug": false
}
],
"react"
]
},
"standard": {
"parser": "babel-eslint"
},
"eslintConfig": {
"extends": [
"react-app",
"standard"
],
"parser": "babel-eslint",
"rules": {
"camelcase": "off",
"brace-style": "off",
"no-trailing-spaces": "off",
"no-multiple-empty-lines": "off",
"no-unused-vars": "warn"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"buildLib": "babel src/SuperSelectField.js -o lib/SuperSelectField.js",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"lint": "eslint src",
"test": "react-scripts test --env=jsdom --coverage",
"release": "yarn deploy && yarn buildLib && npm publish",
"eject": "react-scripts eject"
}
}