-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
{
"author": "Vitalii Maslianok <[email protected]> (https://github.com/maslianok)",
"description": "A highly scalable react dropdown list",
"version": "1.3.2",
"bugs": {
"url": "https://github.com/maslianok/react-select-me/issues"
},
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^0.14.7 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"postcss-cli": "^8.3.1",
"postcss-cssnext": "^3.1.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2"
},
"directories": {
"example": "example"
},
"homepage": "https://github.com/maslianok/react-select-me",
"keywords": [
"react",
"dropdown",
"select",
"picker"
],
"license": "MIT",
"main": "lib/ReactSelectMe.js",
"maintainers": [
"maslianok <[email protected]>"
],
"name": "react-select-me",
"repository": {
"type": "git",
"url": "git://github.com/maslianok/react-select-me.git"
},
"scripts": {
"build": "npm run build:js && npm run build:css",
"build:js": "babel --presets=react,es2015 --plugins=transform-object-assign,transform-class-properties,transform-object-rest-spread src --out-dir lib",
"build:css": "postcss -u postcss-cssnext --postcss-cssnext.browsers \"last 2 versions\" -d lib src/ReactSelectMe.css",
"clean": "rimraf lib",
"lint": "eslint -c .eslintrc src",
"prepublishOnly": "npm run lint && npm run clean && npm run build"
},
"dependencies": {
"classnames": "^2.3.1",
"immutable": "^4.0.0-rc.14",
"postcss": "^8.3.6",
"prop-types": "^15.7.2",
"react-virtualized": "^9.22.3"
}
}