-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.59 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
{
"name": "react-select-css",
"version": "1.3.3",
"description": "A Select control built with and for ReactJS",
"main": "lib/index.js",
"module": "es/index.js",
"style": "dist/react-select-css.min.css",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jharris4/react-select-css.git"
},
"contributors": [
"Jon Harris"
],
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-input-autosize-fork": "^2.2.2"
},
"devDependencies": {
"@porterjs/lib": "^1.0.30",
"@porterjs/mocha": "^1.0.30",
"jsdom": "^15.1.1",
"less": "^3.10.3",
"less-plugin-clean-css": "^1.5.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"sinon": "^7.4.2",
"unexpected": "^11.8.0",
"unexpected-dom": "^4.13.1",
"unexpected-react": "^5.0.4",
"unexpected-sinon": "^10.11.2"
},
"peerDependencies": {
"react": "^16.0",
"react-dom": "^16.0"
},
"scripts": {
"css": "lessc less/default.less dist/react-select-css.css",
"cssmin": "lessc --clean-css less/default.less dist/react-select-css.min.css",
"build": "porter-babel",
"deploy": "porter-rollup",
"test": "porter-mocha",
"prepublishOnly": "npm run test && npm run css && npm run cssmin && npm run build && npm run deploy"
},
"files": [
"dist",
"es",
"lib"
],
"keywords": [
"combobox",
"form",
"input",
"multiselect",
"react",
"react-component",
"select",
"ui"
],
"lint-staged": {
"*.js": "eslint"
}
}