-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
115 lines (115 loc) · 3.2 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
106
107
108
109
110
111
112
113
114
115
{
"name": "react-styled-select",
"version": "3.0.0",
"description": "",
"main": "lib/index.js",
"repository": "https://github.com/agutoli/react-styled-select.git",
"directories": {
"dist": "dist"
},
"engines": {
"node": ">=8.9.4"
},
"scripts": {
"demo:build": "./tools/build-demo",
"show-css-variables": "node bin/extract-css-variables.js",
"coverage": "nyc npm test",
"lint:css": "stylelint './src/**/*.js'",
"build": "BABEL_ENV=production ./tools/build",
"test": "find ./src -name '*.spec.js' | NODE_ENV=test xargs mocha ./test/browser.js --reporter spec",
"test:jest": "jest --browser",
"test:watch": "mocha -w test/browser.js $(find ./src -name '*.spec.js')",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"demo:dev": "webpack-dev-server --config demo/webpack.config.js --hot"
},
"keywords": [
"javascript",
"react",
"styled-components",
"select",
"react-select",
"css-modules",
"shadow dom",
"component"
],
"nyc": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95,
"reporter": [
"lcov",
"text",
"text-summary"
]
},
"author": "Bruno Agutoli <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@storybook/addon-actions": "^5.3.9",
"@storybook/addon-backgrounds": "^5.3.9",
"@storybook/addons": "^5.3.9",
"@storybook/react": "^5.3.9",
"babel-cli": "^6.22.2",
"babel-core": "^6.26.0",
"babel-jest": "^25.1.0",
"babel-loader": "7.1.3",
"babel-minify": "^0.3.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-inline-react-svg": "0.4.0",
"babel-plugin-styled-components": "^1.1.7",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.22.0",
"brace": "^0.11.1",
"chai": "^3.5.0",
"css-loader": "^3.4.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^6.7.0",
"jest": "^25.1.0",
"jest-enzyme": "^7.0.1",
"jsdom": "^11.6.2",
"jsdom-global": "3.0.2",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"react": "^16.2.0",
"react-ace": "^5.9.0",
"react-dom": "^16.2.0",
"regenerator-runtime": "^0.11.1",
"sinon": "^2.3.5",
"styled-components": "4.1.1",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^16.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.1.11"
},
"peerDependencies": {
"react": "~15.4.2 || ^16.2.0",
"react-dom": "~15.4.2 || ^16.2.0",
"styled-components": "2.1.1 - 4.x"
},
"dependencies": {
"@webcomponents/shadydom": "1.0.12",
"@webcomponents/webcomponentsjs": "1.1.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.6.1",
"prop-types": "15.6.1",
"react-click-outside": "3.0.1",
"react-shadow": "16.2.0",
"uuid": "^3.1.0"
},
"jest": {
"setupTestFrameworkScriptFile": "./test/browser.js",
"unmockedModulePathPatterns": [
"react",
"enzyme",
"jest-enzyme"
]
}
}