|
1 | 1 | { |
2 | 2 | "name": "react-select", |
3 | | - "version": "2.0.0-alpha.7", |
| 3 | + "version": "2.0.0-alpha.8", |
4 | 4 | "description": "A Select control built with and for ReactJS", |
5 | 5 | "main": "lib/index.js", |
6 | 6 | "jsnext:main": "dist/react-select.es.js", |
|
91 | 91 | "scripts": { |
92 | 92 | "build": "nps build", |
93 | 93 | "watch": "nps build.watch", |
94 | | - "cover": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha", |
95 | | - "coveralls": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha && cat coverage/lcov.info | coveralls", |
| 94 | + "cover": |
| 95 | + "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha", |
| 96 | + "coveralls": |
| 97 | + "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha && cat coverage/lcov.info | coveralls", |
96 | 98 | "lint": "eslint .", |
97 | 99 | "deploy": "cross-env NODE_ENV=production nps publish", |
98 | 100 | "start": "webpack-dev-server --progress", |
|
103 | 105 | "test:cypress-watch": "node ./node_modules/.bin/cypress open", |
104 | 106 | "precommit": "flow check && lint-staged" |
105 | 107 | }, |
106 | | - "files": [ |
107 | | - "dist", |
108 | | - "lib", |
109 | | - "src" |
110 | | - ], |
| 108 | + "files": ["dist", "lib", "src"], |
111 | 109 | "keywords": [ |
112 | 110 | "combobox", |
113 | 111 | "form", |
|
119 | 117 | "ui" |
120 | 118 | ], |
121 | 119 | "jest": { |
122 | | - "modulePathIgnorePatterns": [ |
123 | | - "./node_modules" |
124 | | - ], |
| 120 | + "modulePathIgnorePatterns": ["./node_modules"], |
125 | 121 | "transform": { |
126 | 122 | "^.+\\.js$": "babel-jest" |
127 | 123 | }, |
128 | | - "testRegex": "src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(js?))$", |
| 124 | + "testRegex": |
| 125 | + "src/*(/(__tests?__/)([^_].*/)*?[^_][^/]*?\\.(test|spec)?\\.(js?))$", |
129 | 126 | "setupFiles": ["./enzymeAdapter.setup.js"] |
130 | 127 | }, |
131 | 128 | "lint-staged": { |
|
0 commit comments