forked from TeamWertarbyte/material-ui-chip-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.73 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-chip-input",
"version": "1.1.0",
"typings": "typings/index.d.ts",
"description": "A chip input field using Material-UI.",
"main": "lib/ChipInput.js",
"files": [
"lib/**/*.js",
"typings/*.d.ts",
"README.md",
"LICENSE",
"demo.gif"
],
"scripts": {
"build": "babel src -d lib",
"test": "standard && jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test:unit": "jest",
"lint": "standard",
"prepublish": "babel src -d lib",
"prestorybook": "npm i react-autosuggest autosuggest-highlight",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -c stories",
"storybook:install": "cd stories && npm install",
"deploy-storybook": "build-storybook -o storybook && gh-pages -d storybook && rm -r storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TeamWertarbyte/material-ui-chip-input.git"
},
"keywords": [
"react",
"material",
"chip",
"input",
"tags"
],
"author": "Wertarbyte <kontakt@wertarbyte.com> (https://wertarbyte.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TeamWertarbyte/material-ui-chip-input/issues"
},
"homepage": "https://github.com/TeamWertarbyte/material-ui-chip-input#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^5.0.0-beta.5",
"@material-ui/styles": "5.0.0-beta.5",
"@storybook/addon-actions": "^5.1.9",
"@storybook/react": "^5.1.9",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"coveralls": "^3.0.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.2.2",
"gh-pages": "^1.2.0",
"jest": "^24.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"standard": "^13.1.0"
},
"peerDependencies": {
"@material-ui/core": "^1.0.0 || ^3.1.0",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"dependencies": {
"autosuggest-highlight": "^3.1.1",
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react-autosuggest": "^10.1.0"
},
"jest": {
"setupFiles": [
"./test/shim.js",
"./test/jestsetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"coveragePathIgnorePatterns": [
"<rootDir>/test"
],
"roots": [
"src",
"test"
]
},
"standard": {
"parser": "babel-eslint"
}
}