-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
90 lines (90 loc) · 3.25 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
{
"name": "react-select-fast-filter-options",
"version": "0.2.3",
"description": "react-select filterOptions function optimized to quickly filter large options lists",
"main": "dist/commonjs/index.js",
"jsnext:main": "dist/es/index.js",
"scripts": {
"build": "npm run build:commonjs && npm run build:es && npm run build:demo && npm run build:umd",
"build:commonjs": "npm run clean:commonjs && cross-env NODE_ENV=production cross-env BABEL_ENV=commonjs babel source --out-dir dist/commonjs --ignore *.example.js,*.test.js,source/demo/,source/tests.js",
"build:demo": "npm run clean:demo && cross-env NODE_ENV=production webpack --config webpack.config.demo.js -p --bail",
"build:es": "npm run clean:es && cross-env NODE_ENV=production cross-env BABEL_ENV=es babel source --out-dir dist/es --ignore *.example.js,*.test.js,source/demo/,source/tests.js",
"build:umd": "npm run clean:umd && cross-env NODE_ENV=production webpack --config webpack.config.umd.js --bail",
"clean": "npm run clean:commonjs && npm run clean:demo && npm run clean:es && npm run clean:umd",
"clean:commonjs": "rimraf dist/commonjs",
"clean:demo": "rimraf build",
"clean:es": "rimraf dist/es",
"clean:umd": "rimraf dist/umd",
"deploy": "gh-pages -d build",
"postbuild": "cp ./styles.css ./build/",
"postpublish": "npm run deploy",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --config webpack.config.dev.js"
},
"author": "Brian Vaughn (brian.david.vaughn@gmail.com)",
"license": "MIT",
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist",
"playground",
"source/vendor"
],
"global": [
"afterAll",
"afterEach",
"beforeAll",
"beforeEach",
"describe",
"expect",
"fdescribe",
"fit",
"it",
"getComputedStyle",
"jasmine"
]
},
"dependencies": {
"js-search": "^1.3.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0-a",
"react-select": "^1.0.0-beta14"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-core": "^6.5.1",
"babel-eslint": "^6.0.4",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.3",
"babel-plugin-__coverage__": "^0.111111.11",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-react-inline-elements": "^6.6.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-es2015-rollup": "3.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"css-loader": "^0.25.0",
"cross-env": "^3.1.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.22.0",
"js-search": "^1.3.0",
"react": "^15.3.1",
"react-addons-shallow-compare": "^15.3.1",
"react-dom": "^15.3.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"react-virtualized-select": "^1.3.0",
"redbox-react": "^1.3.0",
"rimraf": "^2.5.4",
"standard": "^7.0.1",
"style-loader": "^0.13.0",
"webpack": "^1.9.6",
"webpack-dashboard": "0.0.1",
"webpack-dev-server": "^1.14.0"
}
}