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
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"private": true,
"workspaces": [
"packages/*",
"examples"
],
"repository": "git@github.com:vtaits/react-select-async-paginate.git",
"author": "Vadim Taits",
"license": "MIT",
"scripts": {
"build": "yarn workspace react-select-async-paginate build",
"lint": "eslint packages examples --ext .js,.jsx --ignore-path .gitignore",
"test:unit": "jest",
"test:unit:cov": "jest --coverage",
"test": "yarn lint && yarn test:unit",
"validate": "yarn build && yarn lint && yarn test:unit:cov",
"codecov": "codecov"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"path": "^0.12.7",
"raf": "^3.4.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}