forked from vtaits/react-select-async-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.15 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.15 KB
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
{
"name": "react-select-async-paginate",
"version": "0.2.9",
"description": "Wrapper above react-select that supports pagination on menu scroll",
"main": "lib/index.js",
"module": "es/index.js",
"repository": "git@github.com:vtaits/react-select-async-paginate.git",
"author": "Vadim Taits",
"license": "MIT",
"scripts": {
"build": "yarn build:cjs && yarn build:es",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib --ignore \"src/**/__tests__\"",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore \"src/**/__tests__\"",
"lint": "eslint src --ext .js,.jsx",
"test:unit": "jest",
"test:unit:cov": "jest --coverage",
"test": "yarn lint && yarn test:unit",
"prepare": "yarn build",
"validate": "yarn lint && yarn test:unit:cov && yarn build"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-select": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"codecov.io": "^0.1.6",
"cross-env": "^5.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^24.5.0",
"raf": "^3.4.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-select": "^2.1.2",
"react-test-renderer": "^16.7.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"src/**/*.jsx",
"!src/**/__tests__/**/*.js",
"!src/**/__tests__/**/*.jsx"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/"
],
"setupFiles": [
"./setup-jest.js"
]
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"prop-types": "^15.7.2"
}
}