UNPKG

3.23 kBJSONView Raw
1{
2 "name": "react-select",
3 "version": "1.2.1",
4 "description": "A Select control built with and for ReactJS",
5 "main": "lib/index.js",
6 "jsnext:main": "dist/react-select.es.js",
7 "module": "dist/react-select.es.js",
8 "style": "dist/react-select.min.css",
9 "author": "Jed Watson",
10 "license": "MIT",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/JedWatson/react-select.git"
14 },
15 "dependencies": {
16 "classnames": "^2.2.4",
17 "prop-types": "^15.5.8",
18 "react-input-autosize": "^2.1.2"
19 },
20 "devDependencies": {
21 "babel-cli": "^6.26.0",
22 "babel-core": "^6.26.0",
23 "babel-loader": "^7.1.1",
24 "babel-plugin-external-helpers": "^6.22.0",
25 "babel-plugin-istanbul": "^4.1.4",
26 "babel-plugin-transform-react-remove-prop-types": "^0.4.8",
27 "babel-preset-env": "^1.6.1",
28 "babel-preset-react": "^6.24.1",
29 "babel-preset-stage-0": "^6.24.1",
30 "babel-register": "^6.26.0",
31 "chai": "^4.1.2",
32 "coveralls": "^2.11.12",
33 "create-react-class": "^15.5.2",
34 "cross-env": "^5.0.5",
35 "css-loader": "^0.28.7",
36 "eslint": "^4.6.1",
37 "eslint-plugin-react": "^7.3.0",
38 "extract-text-webpack-plugin": "^3.0.0",
39 "gh-pages": "^1.1.0",
40 "html-loader": "^0.5.1",
41 "html-webpack-plugin": "^2.30.1",
42 "husky": "^0.14.3",
43 "isomorphic-fetch": "^2.2.1",
44 "istanbul": "^0.4.5",
45 "jsdom": "^9.12.0",
46 "less": "^2.7.2",
47 "less-loader": "^4.0.5",
48 "less-plugin-clean-css": "^1.5.1",
49 "lint-staged": "^4.3.0",
50 "mocha": "^3.0.2",
51 "nps": "^5.7.1",
52 "nps-utils": "^1.3.0",
53 "nyc": "^11.1.0",
54 "react": "^15.5.0",
55 "react-addons-shallow-compare": "^15.5.0",
56 "react-dom": "^15.5.0",
57 "react-gravatar": "^2.4.5",
58 "react-highlight-words": "^0.8.1",
59 "react-test-renderer": "^15.6.1",
60 "react-virtualized": "^9.9.0",
61 "react-virtualized-select": "^3.1.0",
62 "rollup": "^0.49.2",
63 "rollup-plugin-babel": "^3.0.2",
64 "rollup-plugin-commonjs": "^8.2.0",
65 "rollup-plugin-node-resolve": "^3.0.0",
66 "rollup-plugin-uglify": "^2.0.1",
67 "sinon": "^3.2.1",
68 "style-loader": "^0.18.2",
69 "uglify-es": "^3.0.28",
70 "unexpected": "^10.35.0",
71 "unexpected-dom": "^4.0.0",
72 "unexpected-react": "^4.1.0",
73 "unexpected-sinon": "^10.4.0",
74 "webpack": "^3.5.5",
75 "webpack-dev-server": "^2.7.1"
76 },
77 "peerDependencies": {
78 "react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0",
79 "react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0"
80 },
81 "scripts": {
82 "build": "nps build",
83 "cover": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha",
84 "coveralls": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha && cat coverage/lcov.info | coveralls",
85 "lint": "eslint .",
86 "deploy": "cross-env NODE_ENV=production nps publish",
87 "start": "webpack-dev-server --progress",
88 "test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register",
89 "precommit": "lint-staged && yarn run test"
90 },
91 "files": ["dist", "less", "lib", "scss"],
92 "keywords": [
93 "combobox",
94 "form",
95 "input",
96 "multiselect",
97 "react",
98 "react-component",
99 "select",
100 "ui"
101 ],
102 "lint-staged": {
103 "*.js": "eslint"
104 }
105}