forked from TeamWertarbyte/material-ui-chip-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.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
{
"name": "material-ui-chip-input",
"version": "0.18.5",
"description": "A chip input field using Material-UI.",
"main": "lib/ChipInput.js",
"files": [
"lib/**/*.js",
"README.md",
"LICENSE",
"demo.gif"
],
"scripts": {
"build": "babel src -d lib",
"test": "standard",
"lint": "standard",
"prepare": "npm run build",
"storybook": "start-storybook -p 6006",
"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 <[email protected]> (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": {
"@storybook/addon-actions": "^3.2.13",
"@storybook/react": "^3.2.13",
"babel-cli": "^6.14.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"gh-pages": "^1.0.0",
"material-ui": "^0.20.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"standard": "^10.0.2"
},
"peerDependencies": {
"material-ui": ">= 0.19.1 < 1.0.0",
"react": "^15.3.2 || ^16.0.0",
"react-dom": "^15.3.2 || ^16.0.0"
},
"dependencies": {
"prop-types": "^15.5.7"
},
"standard": {
"parser": "babel-eslint"
}
}